9dada73cf0
the msdos table primary/extended/logical thing was a pain but the logic wasn't too bad.
14 lines
269 B
Python
14 lines
269 B
Python
class PV(object):
|
|
def __init__(self, partobj):
|
|
self.devpath = None
|
|
pass
|
|
|
|
class LV(object):
|
|
def __init__(self, lv_xml, pv_objs):
|
|
pass
|
|
|
|
class Group(object):
|
|
def __init__(self, vg_xml, lv_objs):
|
|
self.devpath = None
|
|
pass
|