mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
Move volume imports in fs/__init__
This commit is contained in:
parent
399dfa3fa0
commit
1371f639ac
1 changed files with 5 additions and 4 deletions
|
@ -9,10 +9,6 @@ def load_volume(data, bootloader):
|
||||||
Returns:
|
Returns:
|
||||||
Volume. The volume that represents all information pertaining to the volume we bootstrap on
|
Volume. The volume that represents all information pertaining to the volume we bootstrap on
|
||||||
"""
|
"""
|
||||||
from bootstrapvz.common.fs.loopbackvolume import LoopbackVolume
|
|
||||||
from bootstrapvz.providers.ec2.ebsvolume import EBSVolume
|
|
||||||
from bootstrapvz.common.fs.virtualdiskimage import VirtualDiskImage
|
|
||||||
from bootstrapvz.common.fs.virtualmachinedisk import VirtualMachineDisk
|
|
||||||
# Create a mapping between valid partition maps in the manifest and their corresponding classes
|
# Create a mapping between valid partition maps in the manifest and their corresponding classes
|
||||||
from partitionmaps.gpt import GPTPartitionMap
|
from partitionmaps.gpt import GPTPartitionMap
|
||||||
from partitionmaps.msdos import MSDOSPartitionMap
|
from partitionmaps.msdos import MSDOSPartitionMap
|
||||||
|
@ -23,7 +19,12 @@ def load_volume(data, bootloader):
|
||||||
}
|
}
|
||||||
# Instantiate the partition map
|
# Instantiate the partition map
|
||||||
partition_map = partition_maps.get(data['partitions']['type'])(data['partitions'], bootloader)
|
partition_map = partition_maps.get(data['partitions']['type'])(data['partitions'], bootloader)
|
||||||
|
|
||||||
# Create a mapping between valid volume backings in the manifest and their corresponding classes
|
# Create a mapping between valid volume backings in the manifest and their corresponding classes
|
||||||
|
from bootstrapvz.common.fs.loopbackvolume import LoopbackVolume
|
||||||
|
from bootstrapvz.providers.ec2.ebsvolume import EBSVolume
|
||||||
|
from bootstrapvz.common.fs.virtualdiskimage import VirtualDiskImage
|
||||||
|
from bootstrapvz.common.fs.virtualmachinedisk import VirtualMachineDisk
|
||||||
volume_backings = {'raw': LoopbackVolume,
|
volume_backings = {'raw': LoopbackVolume,
|
||||||
's3': LoopbackVolume,
|
's3': LoopbackVolume,
|
||||||
'vdi': VirtualDiskImage,
|
'vdi': VirtualDiskImage,
|
||||||
|
|
Loading…
Add table
Reference in a new issue