bootstrap-vz/base/fs/partitions/unformatted.py
2014-02-27 23:02:58 +01:00

12 lines
403 B
Python

from base import BasePartition
class UnformattedPartition(BasePartition):
events = [{'name': 'create', 'src': 'nonexistent', 'dst': 'unmapped'},
{'name': 'map', 'src': 'unmapped', 'dst': 'mapped'},
{'name': 'unmap', 'src': 'mapped', 'dst': 'unmapped'},
]
def __init__(self, size, previous):
super(UnformattedPartition, self).__init__(size, None, None, previous)