whew. finally done block.py.

the msdos table primary/extended/logical thing was a pain but the
logic wasn't too bad.
This commit is contained in:
brent s
2019-10-26 02:52:47 -04:00
parent 305a0db34f
commit 9dada73cf0
9 changed files with 185 additions and 59 deletions

13
aif/disk/lvm.py Normal file
View File

@@ -0,0 +1,13 @@
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