mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 09:50:37 +00:00
Fix NoPartitions class as AbstractPartition got mount_opts as additional parameter
This commit is contained in:
parent
167a0af4ce
commit
d462c5ab8f
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ class NoPartitions(object):
|
|||
|
||||
# In the NoPartitions partitions map we only have a single 'partition'
|
||||
self.root = SinglePartition(Sectors(data['root']['size'], sector_size),
|
||||
data['root']['filesystem'], data['root'].get('format_command', None))
|
||||
data['root']['filesystem'], data['root'].get('format_command', None), data['root'].get('mount_opts', None))
|
||||
self.partitions = [self.root]
|
||||
|
||||
def is_blocking(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue