summaryrefslogtreecommitdiffstats
path: root/storage/formats/mdraid.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-04-08 13:29:45 -0400
committerChris Lumens <clumens@redhat.com>2009-05-12 11:33:49 -0400
commit7837899a25c0f53798ab274cc2e14fd423fbf037 (patch)
tree4718bce9250856206bc8ac139ab0e377a2c69135 /storage/formats/mdraid.py
parent205fc1835036c475ee613d007c0a9c3bfea3b961 (diff)
downloadanaconda-7837899a25c0f53798ab274cc2e14fd423fbf037.tar.gz
anaconda-7837899a25c0f53798ab274cc2e14fd423fbf037.tar.xz
anaconda-7837899a25c0f53798ab274cc2e14fd423fbf037.zip
Add writeKS methods to all the format objects.
Diffstat (limited to 'storage/formats/mdraid.py')
-rw-r--r--storage/formats/mdraid.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/storage/formats/mdraid.py b/storage/formats/mdraid.py
index ec1a61782..b29d2f54b 100644
--- a/storage/formats/mdraid.py
+++ b/storage/formats/mdraid.py
@@ -92,6 +92,9 @@ class MDRaidMember(DeviceFormat):
# XXX hack -- we don't have a nice way to see if the array is active
return False
+ def writeKS(self, f):
+ f.write("raid.%s" % self.mdUuid)
+
register_device_format(MDRaidMember)