diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-10-04 15:41:46 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-10-04 15:41:46 +0000 |
commit | fc225c1f7f34facb3b4cdb8c80960020d1c2a4b1 (patch) | |
tree | 7bb8a47567e00d9f8291b12ebd8fcdab781460a8 /command-stubs/raidstart-stub | |
parent | d1b28b3cfe0f69b03479827e70310a9080cb00ff (diff) | |
download | anaconda-fc225c1f7f34facb3b4cdb8c80960020d1c2a4b1.tar.gz anaconda-fc225c1f7f34facb3b4cdb8c80960020d1c2a4b1.tar.xz anaconda-fc225c1f7f34facb3b4cdb8c80960020d1c2a4b1.zip |
merge fix from 7-2-branch
Diffstat (limited to 'command-stubs/raidstart-stub')
-rwxr-xr-x | command-stubs/raidstart-stub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/command-stubs/raidstart-stub b/command-stubs/raidstart-stub index 77e87c952..7c3b3d39e 100755 --- a/command-stubs/raidstart-stub +++ b/command-stubs/raidstart-stub @@ -28,7 +28,7 @@ drives = isys.hardDriveDict().keys() drives.sort (isys.compareDrives) raidDevices = raid.scanForRaid(drives) -for (minor, devices) in raidDevices: +for (minor, devices, level, totalDisks) in raidDevices: if targMinor == minor: devName = "md%d" % (minor,) isys.raidstart(devName, devices[0]) |