From 9e877585e213a9fccec8ff9b3dcb876b2ec65696 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 31 May 2012 13:59:33 +0200 Subject: If SELinux is enabled ensure we also have restorecon. We don't have a specific requires on the policycoreutils package. It gets pulled in as a dependency on the server anyway, but checking there is like a belt and suspenders. On the client we don't require SELinux at all. If SELinux is enabled however we need to set things up properly. This is provided by the policycoreutils package so fail if that isn't available. https://fedorahosted.org/freeipa/ticket/2368 --- ipa-client/ipa-install/ipa-client-install | 1 + 1 file changed, 1 insertion(+) (limited to 'ipa-client/ipa-install') diff --git a/ipa-client/ipa-install/ipa-client-install b/ipa-client/ipa-install/ipa-client-install index 4fc4449da..afc332a99 100755 --- a/ipa-client/ipa-install/ipa-client-install +++ b/ipa-client/ipa-install/ipa-client-install @@ -1539,6 +1539,7 @@ def main(): if not os.getegid() == 0: sys.exit("\nYou must be root to run ipa-client-install.\n") + ipaservices.check_selinux_status() logging_setup(options) root_logger.debug('%s was invoked with options: %s' % (sys.argv[0], safe_options)) root_logger.debug("missing options might be asked for interactively later\n") -- cgit