mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
Fix MapPartitions after[] reference
This commit is contained in:
parent
7e32263315
commit
6b2abd8634
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ class PartitionVolume(Task):
|
||||||
class MapPartitions(Task):
|
class MapPartitions(Task):
|
||||||
description = 'Mapping volume partitions'
|
description = 'Mapping volume partitions'
|
||||||
phase = phases.volume_preparation
|
phase = phases.volume_preparation
|
||||||
after = [Partition]
|
after = [PartitionVolume]
|
||||||
|
|
||||||
def run(self, info):
|
def run(self, info):
|
||||||
log_check_call(['kpartx', '-a', '-v', info.bootstrap_device['path']])
|
log_check_call(['kpartx', '-a', '-v', info.bootstrap_device['path']])
|
||||||
|
|
Loading…
Add table
Reference in a new issue