diff options
author | Chris Lumens <clumens@redhat.com> | 2006-02-27 15:17:54 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-02-27 15:17:54 +0000 |
commit | 3af070baa98168de8af488cb5b66452ca4b70849 (patch) | |
tree | 757650fcd13378c880a5953ab6102edd646422f9 | |
parent | 5387bf3b8ce2eea4a454eacd1e601284a2759919 (diff) | |
download | anaconda-3af070baa98168de8af488cb5b66452ca4b70849.tar.gz anaconda-3af070baa98168de8af488cb5b66452ca4b70849.tar.xz anaconda-3af070baa98168de8af488cb5b66452ca4b70849.zip |
"" vs. None for making swap on RAID work again (#176537).
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | kickstart.py | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2006-02-27 Chris Lumens <clumens@redhat.com> + + * kickstart.py (AnacondaKSHandlers.doRaid): "" vs. None for making + swap on RAID work again (#176537). + 2006-02-24 Jeremy Katz <katzj@redhat.com> * anaconda.spec: Bump version. diff --git a/kickstart.py b/kickstart.py index 6c29bdf4f..fd0b2973e 100644 --- a/kickstart.py +++ b/kickstart.py @@ -439,7 +439,7 @@ class AnacondaKSHandlers(KickstartHandlers): if rd.mountpoint == "swap": filesystem = fileSystemTypeGet('swap') - rd.mountpoint = None + rd.mountpoint = "" elif rd.mountpoint.startswith("pv."): filesystem = fileSystemTypeGet("physical volume (LVM)") |