Joey Boggs
2009-Feb-06 04:13 UTC
[Ovirt-devel] [PATCH server] fix selinux disable command during installer
This fixes an issue seen in the appliance during boot/buildtime, I've been
able to reproduce only a few times but needed to be fixed anyways
---
installer/bin/ovirt-installer | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/installer/bin/ovirt-installer b/installer/bin/ovirt-installer
index 99601d4..b7d12d7 100755
--- a/installer/bin/ovirt-installer
+++ b/installer/bin/ovirt-installer
@@ -97,7 +97,7 @@ if File.exist?("/usr/sbin/selinuxenabled")
exit(0)
else
@cli.say("Disabling SELinux")
- system "/usr/sbin/lokkit --selinuxtype=disabled"
+ system "/usr/sbin/lokkit --selinux=disabled"
system "/usr/sbin/setenforce 0"
end
end
--
1.6.0.6
Jeremy Katz
2009-Feb-06 16:01 UTC
[Ovirt-devel] [PATCH server] fix selinux disable command during installer
On Thursday, February 05 2009, Joey Boggs said:> This fixes an issue seen in the appliance during boot/buildtime, I've been able to reproduce only a few times > but needed to be fixed anywaysWait, why are we disabling SELinux? Jeremy