diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-01-28 01:42:21 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-01-28 01:42:21 +0000 |
commit | d72d72971f32dc1a12eb6f517981c36181681842 (patch) | |
tree | c6da5cdce219dfca43fa850c6ac48ca6ffb0d4da /anaconda | |
parent | 1bd8a69ae38d12ec1f2f0700f44436b428e322b3 (diff) | |
download | anaconda-d72d72971f32dc1a12eb6f517981c36181681842.tar.gz anaconda-d72d72971f32dc1a12eb6f517981c36181681842.tar.xz anaconda-d72d72971f32dc1a12eb6f517981c36181681842.zip |
if we can't mount /selinux, don't cry about it
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -571,7 +571,10 @@ log.handler=anaconda_log # now let's set up our selinux stuff. whee! if flags.setupFilesystems: os.mkdir("/selinux") - isys.mount("/selinux", "/selinux", fstype="selinuxfs") + try: + isys.mount("/selinux", "/selinux", fstype="selinuxfs") + except: + pass if os.access("/selinux/load", os.W_OK): dup_log("Loading selinux policy...") args = ["/usr/sbin/load_policy", |