Author: des
Date: Tue Sep  4 21:56:16 2012
New Revision: 240109
URL: http://svn.freebsd.org/changeset/base/240109

Log:
  Add a configtest command.
  
  Submitted by: gjb@
  MFC after:    1 week

Modified:
  head/etc/rc.d/sshd

Modified: head/etc/rc.d/sshd
==============================================================================
--- head/etc/rc.d/sshd  Tue Sep  4 21:47:09 2012        (r240108)
+++ head/etc/rc.d/sshd  Tue Sep  4 21:56:16 2012        (r240109)
@@ -14,8 +14,9 @@ rcvar="sshd_enable"
 command="/usr/sbin/${name}"
 keygen_cmd="sshd_keygen"
 start_precmd="sshd_precmd"
+configtest_cmd="sshd_configtest"
 pidfile="/var/run/${name}.pid"
-extra_commands="keygen reload"
+extra_commands="configtest keygen reload"
 
 timeout=300
 
@@ -87,6 +88,12 @@ sshd_keygen()
        )
 }
 
+sshd_configtest()
+{
+       echo "Performing sanity check on ${name} configuration."
+       eval ${command} ${sshd_flags} -t
+}
+
 sshd_precmd()
 {
        if [ ! -f /etc/ssh/ssh_host_key -o \
@@ -96,6 +103,7 @@ sshd_precmd()
                user_reseed
                run_rc_command keygen
        fi
+       sshd_configtest
 }
 
 load_rc_config $name
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to