summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-05-05 19:00:21 +0000
committerJeremy Katz <katzj@redhat.com>2004-05-05 19:00:21 +0000
commit5ab1175ab5018a12d5ffa07e52e380efa4fc36e4 (patch)
treea7977c85f445d0ce3b54e2ea61292dcf69974618 /anaconda
parent25221ad41075f61979ffc9c8242fabd8f3a85096 (diff)
downloadanaconda-5ab1175ab5018a12d5ffa07e52e380efa4fc36e4.tar.gz
anaconda-5ab1175ab5018a12d5ffa07e52e380efa4fc36e4.tar.xz
anaconda-5ab1175ab5018a12d5ffa07e52e380efa4fc36e4.zip
if selinux is in the ks.cfg, we need to be able to turn it on. policy
was getting loaded, but the second stage wasn't noticing that it needed to be enabled. hack it in
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda2
1 files changed, 2 insertions, 0 deletions
diff --git a/anaconda b/anaconda
index 46b49958b..83af904d8 100755
--- a/anaconda
+++ b/anaconda
@@ -512,6 +512,8 @@ for n in args:
runres_override = 1
elif (str == '--noselinux'):
flags.selinux = 0
+ elif (str == '--selinux'):
+ flags.selinux = 1
elif (str == "--skipddc"):
skipddc = 1
elif (str == "--autostep"):