svn commit: r272870 - in stable/10/etc: defaults rc.d
Hiroki Sato
hrs at FreeBSD.org
Thu Oct 9 23:47:09 UTC 2014
Author: hrs
Date: Thu Oct 9 23:47:07 2014
New Revision: 272870
URL: https://svnweb.freebsd.org/changeset/base/272870
Log:
MFC r271663:
Fix a typo; master server for iprop service should be singular.
Modified:
stable/10/etc/defaults/rc.conf
stable/10/etc/rc.d/ipropd_slave
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/etc/defaults/rc.conf
==============================================================================
--- stable/10/etc/defaults/rc.conf Thu Oct 9 23:46:17 2014 (r272869)
+++ stable/10/etc/defaults/rc.conf Thu Oct 9 23:47:07 2014 (r272870)
@@ -298,7 +298,7 @@ ipropd_slave_enable="NO" # Run Heimdal i
ipropd_slave_program="/usr/libexec/ipropd-slave"
ipropd_slave_flags="" # Flags to ipropd-slave.
ipropd_slave_keytab="/etc/krb5.keytab" # keytab for ipropd-slave.
-ipropd_slave_masters="" # master node names.
+ipropd_slave_master="" # master node name.
gssd_enable="NO" # Run the gssd daemon (or NO).
gssd_program="/usr/sbin/gssd" # Path to gssd.
Modified: stable/10/etc/rc.d/ipropd_slave
==============================================================================
--- stable/10/etc/rc.d/ipropd_slave Thu Oct 9 23:46:17 2014 (r272869)
+++ stable/10/etc/rc.d/ipropd_slave Thu Oct 9 23:47:07 2014 (r272870)
@@ -17,15 +17,15 @@ start_precmd=${name}_start_precmd
ipropd_slave_start_precmd()
{
- if [ -z "$ipropd_slave_masters" ]; then
- warn "\$ipropd_slave_masters is empty."
+ if [ -z "$ipropd_slave_master" ]; then
+ warn "\$ipropd_slave_master is empty."
return 1
fi
command_args=" \
$command_args \
--keytab=\"$ipropd_slave_keytab\" \
--detach \
- $ipropd_slave_masters"
+ $ipropd_slave_master"
}
load_rc_config $name
More information about the svn-src-all
mailing list