Correction on args fetching
This commit is contained in:
parent
755efe5706
commit
ceb73c5523
|
|
@ -852,7 +852,7 @@ def mount_boot(drive, partition, mountpoint='/mnt/boot', *positionals, **kwargs)
|
|||
|
||||
def mount_mountpoints(drive, bootpartition, mountpoint='/mnt/boot', *positionals, **kwargs):
|
||||
drive = args[drive]
|
||||
bootpartition = args[bootpartition]
|
||||
bootpartition = args['partitions'][bootpartition]
|
||||
mount_luksdev(*positionals, **kwargs)
|
||||
mount_boot(drive, bootpartition, mountpoint='/mnt/boot', *positionals, **kwargs)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue