aif-ng/aif/disk/mdadm.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

12 lines
281 B
Python

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