svn commit: r256126 - head/etc/rc.d

Xin LI delphij at FreeBSD.org
Mon Oct 7 21:39:43 UTC 2013


Author: delphij
Date: Mon Oct  7 21:39:42 2013
New Revision: 256126
URL: http://svnweb.freebsd.org/changeset/base/256126

Log:
  Reduce priority of host key exists message in sshd startup
  script to info.
  
  Approved by:	re (gjb)

Modified:
  head/etc/rc.d/sshd

Modified: head/etc/rc.d/sshd
==============================================================================
--- head/etc/rc.d/sshd	Mon Oct  7 20:48:24 2013	(r256125)
+++ head/etc/rc.d/sshd	Mon Oct  7 21:39:42 2013	(r256126)
@@ -53,7 +53,7 @@ sshd_keygen_alg()
 	fi
 
 	if [ -f "${keyfile}" ] ; then
-		echo "$ALG host key exists."
+		info "$ALG host key exists."
 	else
 		echo "Generating $ALG host key."
 		/usr/bin/ssh-keygen -q -t $alg -f "$keyfile" -N ""


More information about the svn-src-all mailing list