aif-ng/aif/disk/lvm.py
brent s 9dada73cf0 whew. finally done block.py.
the msdos table primary/extended/logical thing was a pain but the
logic wasn't too bad.
2019-10-26 02:52:47 -04:00

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