PKGBUILDs/core/openssh/sshd

41 lines
1 KiB
Text
Raw Normal View History

2009-09-26 14:35:50 +00:00
#!/bin/bash
2009-09-26 16:30:17 +00:00
. /opt/etc/rc.conf
. /opt/etc/rc.d/functions
. /opt/etc/conf.d/sshd
2009-09-26 14:35:50 +00:00
2009-09-26 16:30:17 +00:00
PID=`cat /opt/var/run/sshd.pid 2>/dev/null`
2009-09-26 14:35:50 +00:00
case "$1" in
start)
stat_busy "Starting Secure Shell Daemon"
2009-09-26 16:30:17 +00:00
[ -f /opt/etc/ssh/ssh_host_key ] || { /opt/bin/ssh-keygen -t rsa1 -N "" -f /opt/etc/ssh/ssh_host_key >/dev/null; }
[ -f /opt/etc/ssh/ssh_host_rsa_key ] || { /opt/bin/ssh-keygen -t rsa -N "" -f /opt/etc/ssh/ssh_host_rsa_key >/dev/null; }
[ -f /opt/etc/ssh/ssh_host_dsa_key ] || { /opt/bin/ssh-keygen -t dsa -N "" -f /opt/etc/ssh/ssh_host_dsa_key >/dev/null; }
[ -z "$PID" ] && /opt/sbin/sshd $SSHD_ARGS
2009-09-26 14:35:50 +00:00
if [ $? -gt 0 ]; then
stat_fail
else
add_daemon sshd
stat_done
fi
;;
stop)
stat_busy "Stopping Secure Shell Daemon"
[ ! -z "$PID" ] && kill $PID &> /dev/null
if [ $? -gt 0 ]; then
stat_fail
else
rm_daemon sshd
stat_done
fi
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac
exit 0