blob: d0aff7794873d6460ee134df33932105cf20c9b0 [file] [log] [blame]
Darren Tuckerfbea7642006-01-30 00:22:39 +11001#!@STARTUP_SCRIPT_SHELL@
Ben Lindstrom8b5ba1c2001-10-12 20:30:52 +00002# Donated code that was put under PD license.
3#
4# Stripped PRNGd out of it for the time being.
5
Tim Rice748fcf92002-11-13 15:50:04 -08006umask 022
7
Tim Rice5af9db92004-06-19 19:31:06 -07008CAT=@CAT@
9KILL=@KILL@
Ben Lindstrom8b5ba1c2001-10-12 20:30:52 +000010
Tim Rice5af9db92004-06-19 19:31:06 -070011prefix=@prefix@
12sysconfdir=@sysconfdir@
13piddir=@piddir@
Ben Lindstrom8b5ba1c2001-10-12 20:30:52 +000014
Ben Lindstrom7a973392001-10-12 21:52:39 +000015SSHD=$prefix/sbin/sshd
Ben Lindstromf2366b52001-10-19 20:36:23 +000016PIDFILE=$piddir/sshd.pid
Tim Rice53e99742009-11-20 19:32:15 -080017PidFile=`grep "^PidFile" ${sysconfdir}/sshd_config | tr "=" " " | awk '{print $2}'`
18[ X$PidFile = X ] || PIDFILE=$PidFile
Ben Lindstrom7a973392001-10-12 21:52:39 +000019SSH_KEYGEN=$prefix/bin/ssh-keygen
Tim Rice5af9db92004-06-19 19:31:06 -070020HOST_KEY_RSA1=$sysconfdir/ssh_host_key
21HOST_KEY_DSA=$sysconfdir/ssh_host_dsa_key
22HOST_KEY_RSA=$sysconfdir/ssh_host_rsa_key
Ben Lindstrom8b5ba1c2001-10-12 20:30:52 +000023
Ben Lindstrom8b5ba1c2001-10-12 20:30:52 +000024
25checkkeys() {
26 if [ ! -f $HOST_KEY_RSA1 ]; then
Damien Millera8e06ce2003-11-21 23:48:55 +110027 ${SSH_KEYGEN} -t rsa1 -f ${HOST_KEY_RSA1} -N ""
Ben Lindstrom8b5ba1c2001-10-12 20:30:52 +000028 fi
29 if [ ! -f $HOST_KEY_DSA ]; then
Damien Millera8e06ce2003-11-21 23:48:55 +110030 ${SSH_KEYGEN} -t dsa -f ${HOST_KEY_DSA} -N ""
Ben Lindstrom8b5ba1c2001-10-12 20:30:52 +000031 fi
32 if [ ! -f $HOST_KEY_RSA ]; then
Damien Millera8e06ce2003-11-21 23:48:55 +110033 ${SSH_KEYGEN} -t rsa -f ${HOST_KEY_RSA} -N ""
Ben Lindstrom8b5ba1c2001-10-12 20:30:52 +000034 fi
35}
36
37stop_service() {
38 if [ -r $PIDFILE -a ! -z ${PIDFILE} ]; then
Damien Millera8e06ce2003-11-21 23:48:55 +110039 PID=`${CAT} ${PIDFILE}`
Ben Lindstrom8b5ba1c2001-10-12 20:30:52 +000040 fi
41 if [ ${PID:=0} -gt 1 -a ! "X$PID" = "X " ]; then
Damien Millera8e06ce2003-11-21 23:48:55 +110042 ${KILL} ${PID}
Ben Lindstrom8b5ba1c2001-10-12 20:30:52 +000043 else
Damien Millera8e06ce2003-11-21 23:48:55 +110044 echo "Unable to read PID file"
Ben Lindstrom8b5ba1c2001-10-12 20:30:52 +000045 fi
46}
47
48start_service() {
49 # XXX We really should check if the service is already going, but
50 # XXX we will opt out at this time. - Bal
51
52 # Check to see if we have keys that need to be made
53 checkkeys
54
55 # Start SSHD
56 echo "starting $SSHD... \c" ; $SSHD
57
58 sshd_rc=$?
59 if [ $sshd_rc -ne 0 ]; then
Damien Millera8e06ce2003-11-21 23:48:55 +110060 echo "$0: Error ${sshd_rc} starting ${SSHD}... bailing."
61 exit $sshd_rc
Ben Lindstrom8b5ba1c2001-10-12 20:30:52 +000062 fi
63 echo done.
64}
65
66case $1 in
67
68'start')
69 start_service
70 ;;
71
72'stop')
73 stop_service
74 ;;
75
76'restart')
77 stop_service
78 start_service
79 ;;
80
81*)
82 echo "$0: usage: $0 {start|stop|restart}"
83 ;;
84esac