From 2d3e91ff1cefc29f521991cf930fcf09bcdf78e8 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 26 Oct 2012 13:31:22 -0400 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 --- ipa-client/ipa-install/ipa-client-automount | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipa-client/ipa-install/ipa-client-automount') diff --git a/ipa-client/ipa-install/ipa-client-automount b/ipa-client/ipa-install/ipa-client-automount index 7ea69ec12..182f9f659 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) -- cgit