diff options
author | Rob Crittenden <rcritten@redhat.com> | 2012-10-26 13:31:22 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2012-10-26 15:18:55 -0400 |
commit | 2d3e91ff1cefc29f521991cf930fcf09bcdf78e8 (patch) | |
tree | 2eb068199ebd98f25157fabe742068c85db7495a /ipa-client | |
parent | 1d5027bfc901544c6cfb2e65ea1448fe636666e0 (diff) | |
download | freeipa-2d3e91ff1cefc29f521991cf930fcf09bcdf78e8.tar.gz freeipa-2d3e91ff1cefc29f521991cf930fcf09bcdf78e8.tar.xz freeipa-2d3e91ff1cefc29f521991cf930fcf09bcdf78e8.zip |
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
Diffstat (limited to 'ipa-client')
-rwxr-xr-x | ipa-client/ipa-install/ipa-client-automount | 2 |
1 files changed, 1 insertions, 1 deletions
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) |