diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-06-07 03:41:06 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-06-07 03:41:06 +0000 |
commit | c857e3987c2002e63ac149d5ef01964639c86717 (patch) | |
tree | a8fa27316a3137f5603f5f6d48c84b6de604618f /partRequests.py | |
parent | 7c4e4c456505e682cc3f491db26ced0b723bafad (diff) | |
download | anaconda-c857e3987c2002e63ac149d5ef01964639c86717.tar.gz anaconda-c857e3987c2002e63ac149d5ef01964639c86717.tar.xz anaconda-c857e3987c2002e63ac149d5ef01964639c86717.zip |
add ability to have preexisting raid requests
Diffstat (limited to 'partRequests.py')
-rw-r--r-- | partRequests.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/partRequests.py b/partRequests.py index af0a6645a..59ff7b4b0 100644 --- a/partRequests.py +++ b/partRequests.py @@ -455,7 +455,8 @@ class RaidRequestSpec(RequestSpec): def __init__(self, fstype, format = None, mountpoint = None, raidlevel = None, raidmembers = None, - raidspares = None, raidminor = None): + raidspares = None, raidminor = None, + preexist = 0): """Create a new RaidRequestSpec object. fstype is the fsset filesystem type. @@ -468,7 +469,7 @@ class RaidRequestSpec(RequestSpec): """ RequestSpec.__init__(self, fstype = fstype, format = format, - mountpoint = mountpoint) + mountpoint = mountpoint, preexist = preexist) self.type = REQUEST_RAID |