From 6b2abd8634b61b494aa7b5498b5a97759bc7c6ff Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Sat, 10 Aug 2013 23:02:16 +0200 Subject: [PATCH] Fix MapPartitions after[] reference --- common/tasks/parted.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/tasks/parted.py b/common/tasks/parted.py index e1916c9..2797d39 100644 --- a/common/tasks/parted.py +++ b/common/tasks/parted.py @@ -24,7 +24,7 @@ class PartitionVolume(Task): class MapPartitions(Task): description = 'Mapping volume partitions' phase = phases.volume_preparation - after = [Partition] + after = [PartitionVolume] def run(self, info): log_check_call(['kpartx', '-a', '-v', info.bootstrap_device['path']])