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

11
aif/disk/mdadm.py Normal file
View File

@@ -0,0 +1,11 @@
class Member(object):
def __init__(self, member_xml, partobj):
self.xml = member_xml
self.device = partobj
self.devpath = self.device.devpath
pass
class Array(object):
def __init__(self, array_xml):
self.devpath = None
pass