From 63ae7a29d8389f8a6fb2e7cee4fa32f5df191f6e Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Oct 26 2012 19:19:42 +0000 Subject: The SECURE_NFS value needs to be lower-case yes on SysV systems. The sysV rpcgssd init script tests for [ "${SECURE_NFS}" != "yes" ]. This also works as lower case for system so a simple fix. https://fedorahosted.org/freeipa/ticket/3207 --- diff --git a/ipa-client/ipa-install/ipa-client-automount b/ipa-client/ipa-install/ipa-client-automount index 7ea69ec..182f9f6 100755 --- a/ipa-client/ipa-install/ipa-client-automount +++ b/ipa-client/ipa-install/ipa-client-automount @@ -304,7 +304,7 @@ def configure_nfs(fstore, statestore): Configure secure NFS """ replacevars = { - 'SECURE_NFS': 'YES', + 'SECURE_NFS': 'yes', } ipautil.backup_config_and_replace_variables(fstore, NFS_CONF, replacevars=replacevars)