]> andersk Git - openssh.git/blame - contrib/solaris/opensshd.in
Forgot to check in before.
[openssh.git] / contrib / solaris / opensshd.in
CommitLineData
6e464960 1#!/sbin/sh
2# Donated code that was put under PD license.
3#
4# Stripped PRNGd out of it for the time being.
5
6AWK=/usr/bin/awk
7CAT=/usr/bin/cat
8EGREP=/usr/bin/egrep
9KILL=/usr/bin/kill
10PS=/usr/bin/ps
11
78c84f13 12prefix=%%openSSHDir%%
13etcdir=%%configDir%%
6e464960 14
78c84f13 15SSHD=$prefix/sbin/sshd
16SSH_KEYGEN=$prefix/bin/ssh-keygen
17HOST_KEY_RSA1=$etcdir/ssh_host_key
18HOST_KEY_DSA=$etcdir/ssh_host_dsa_key
19HOST_KEY_RSA=$etcdir/ssh_host_rsa_key
6e464960 20
21killproc() {
22 _procname=$1
23 _signal=$2
24 ${PGREP} ${_procname} | ${HEAD} -1 | ${XARGS} -t -I {} ${KILL} -${_signal} {}
25}
26
27
28checkkeys() {
29 if [ ! -f $HOST_KEY_RSA1 ]; then
30 $SSH_KEYGEN -t rsa1 -f $HOST_KEY_RSA1 -N ""
31 fi
32 if [ ! -f $HOST_KEY_DSA ]; then
33 $SSH_KEYGEN -t dsa -f $HOST_KEY_DSA -N ""
34 fi
35 if [ ! -f $HOST_KEY_RSA ]; then
36 $SSH_KEYGEN -t rsa -f $HOST_KEY_RSA -N ""
37 fi
38}
39
40stop_service() {
41 if [ -r $PIDFILE -a ! -z ${PIDFILE} ]; then
42 PID=`cat ${PIDFILE}`
43 fi
44 if [ ${PID:=0} -gt 1 -a ! "X$PID" = "X " ]; then
45 $KILL $PID
46 else
47 echo "Unable to read PID file, killing using alternate method"
48 killproc sshd TERM
49 fi
50}
51
52start_service() {
53 # XXX We really should check if the service is already going, but
54 # XXX we will opt out at this time. - Bal
55
56 # Check to see if we have keys that need to be made
57 checkkeys
58
59 # Start SSHD
60 echo "starting $SSHD... \c" ; $SSHD
61
62 sshd_rc=$?
63 if [ $sshd_rc -ne 0 ]; then
64 echo "$0: Error ${sshd_rc} starting ${SSHD}... bailing."
65 exit $sshd_rc
66 fi
67 echo done.
68}
69
70case $1 in
71
72'start')
73 start_service
74 ;;
75
76'stop')
77 stop_service
78 ;;
79
80'restart')
81 stop_service
82 start_service
83 ;;
84
85*)
86 echo "$0: usage: $0 {start|stop|restart}"
87 ;;
88esac
This page took 0.068674 seconds and 5 git commands to generate.