svn commit: r252477 - stable/9/etc/rc.d
Xin LI
delphij at FreeBSD.org
Mon Jul 1 20:45:56 UTC 2013
Author: delphij
Date: Mon Jul 1 20:45:55 2013
New Revision: 252477
URL: http://svnweb.freebsd.org/changeset/base/252477
Log:
MFC r252062:
Call sshd_precmd instead of sshd_configtest when the operator
requests reload or restart, which, in addition of testing the
configuration, will also generate host keys when they are not
present (previous behavior).
Obtained from: FreeNAS
Ok'ed by: bdrewery, des
Modified:
stable/9/etc/rc.d/sshd
Directory Properties:
stable/9/etc/rc.d/ (props changed)
Modified: stable/9/etc/rc.d/sshd
==============================================================================
--- stable/9/etc/rc.d/sshd Mon Jul 1 20:30:48 2013 (r252476)
+++ stable/9/etc/rc.d/sshd Mon Jul 1 20:45:55 2013 (r252477)
@@ -14,8 +14,8 @@ rcvar="sshd_enable"
command="/usr/sbin/${name}"
keygen_cmd="sshd_keygen"
start_precmd="sshd_precmd"
-reload_precmd="sshd_configtest"
-restart_precmd="sshd_configtest"
+reload_precmd="sshd_precmd"
+restart_precmd="sshd_precmd"
configtest_cmd="sshd_configtest"
pidfile="/var/run/${name}.pid"
extra_commands="configtest keygen reload"
More information about the svn-src-stable-9
mailing list