summaryrefslogtreecommitdiffstats
path: root/package/openssh
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-07-23 11:00:59 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-07-23 11:00:59 +0000
commite0fc615c1eb700382df5237953773e0b9ec916b5 (patch)
treeee031e408f139ab93ac3b00910565dce36808c77 /package/openssh
parentb384588ad03cafafcf8f93051751c7129e6ece1b (diff)
downloadbuildroot-novena-e0fc615c1eb700382df5237953773e0b9ec916b5.tar.gz
buildroot-novena-e0fc615c1eb700382df5237953773e0b9ec916b5.zip
- add runlevel script for later use
Diffstat (limited to 'package/openssh')
-rw-r--r--package/openssh/S50sshd64
1 files changed, 64 insertions, 0 deletions
diff --git a/package/openssh/S50sshd b/package/openssh/S50sshd
new file mode 100644
index 000000000..3821449fb
--- /dev/null
+++ b/package/openssh/S50sshd
@@ -0,0 +1,64 @@
+#!/bin/sh
+#
+# sshd Starts sshd.
+#
+
+# Make sure the ssh-keygen progam exists
+[ -f /usr/bin/ssh-keygen ] || exit 0
+
+# Check for the SSH1 RSA key
+if [ ! -f /etc/ssh_host_key ] ; then
+ echo Generating RSA Key...
+ /usr/bin/ssh-keygen -t rsa1 -f /etc/ssh_host_key -C '' -N ''
+fi
+
+# Check for the SSH2 RSA key
+if [ ! -f /etc/ssh_host_rsa_key ] ; then
+ echo Generating RSA Key...
+ /usr/bin/ssh-keygen -t rsa -f /etc/ssh_host_rsa_key -C '' -N ''
+fi
+
+# Check for the SSH2 DSA key
+if [ ! -f /etc/ssh_host_dsa_key ] ; then
+ echo Generating DSA Key...
+ echo THIS CAN TAKE A MINUTE OR TWO DEPENDING ON YOUR PROCESSOR!
+ echo
+ /usr/bin/ssh-keygen -t dsa -f /etc/ssh_host_dsa_key -C '' -N ''
+fi
+
+umask 077
+
+start() {
+ echo -n "Starting sshd: "
+ /usr/sbin/sshd
+ touch /var/lock/sshd
+ echo "OK"
+}
+stop() {
+ echo -n "Stopping sshd: "
+ killall sshd
+ rm -f /var/lock/sshd
+ echo "OK"
+}
+restart() {
+ stop
+ start
+}
+
+case "$1" in
+ start)
+ start
+ ;;
+ stop)
+ stop
+ ;;
+ restart|reload)
+ restart
+ ;;
+ *)
+ echo $"Usage: $0 {start|stop|restart}"
+ exit 1
+esac
+
+exit $?
+