]> andersk Git - gssapi-openssh.git/commitdiff
o Add $SSHD_ARGS variable within which users can easily add arguments
authorcphillip <cphillip>
Tue, 18 Jun 2002 20:45:01 +0000 (20:45 +0000)
committercphillip <cphillip>
Tue, 18 Jun 2002 20:45:01 +0000 (20:45 +0000)
      to the sshd program.

setup/SXXsshd.in

index c5b2f6feeeca3baa0a7ae0a2b183b694c6740384..f2dbc1a1e9ab4eff2bf36c69115e8bcb6257bf20 100644 (file)
@@ -14,6 +14,13 @@ export GLOBUS_LOCATION
 
 PID_FILE=${localstatedir}/sshd.pid
 
+#
+# SSHD arguments can be added here within the following
+# set of double quotes.
+#
+
+SSHD_ARGS=""
+
 case "$1" in
     start)
         if [ ! -f $PID_FILE ]; then
@@ -21,7 +28,7 @@ case "$1" in
                 mkdir -p $localstatedir
             fi
             echo "Starting up GSI-OpenSSH sshd server"
-            ${sbindir}/sshd > /dev/null 2>&1 &
+            ${sbindir}/sshd $SSHD_ARGS > /dev/null 2>&1 &
             if [ $? -ne 0 ] ; then
                 echo "Failed to start up GSI-OpenSSH sshd server"
             fi
This page took 0.221119 seconds and 5 git commands to generate.