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
This commit is contained in:
Rob Crittenden
2012-10-26 13:31:22 -04:00
parent 1d5027bfc9
commit 2d3e91ff1c

View File

@@ -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)