Viitor_openssh/etc/init/sshd.conf
kueller 766ab58a36 PIDFILE Check mit CheckPid hinzugefuegt
git-svn-id: svn://svn.compuextreme.de/Viitor/V963/Viitor_openssh@6204 504e572c-2e33-0410-9681-be2bf7408885
2011-08-19 07:40:18 +00:00

23 lines
580 B
Plaintext

description "ssh daemon startup"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on (runlevel [2345] and (started rpc))
stop on runlevel [016]
console none
pre-start script
if [ ! -f /etc/sysconfig/ssh/ssh_host_key ]; then
ssh-keygen -N "" -t rsa1 -f /etc/sysconfig/ssh/ssh_host_key
ssh-keygen -N "" -t rsa -f /etc/sysconfig/ssh/ssh_host_rsa_key
ssh-keygen -N "" -t dsa -f /etc/sysconfig/ssh/ssh_host_dsa_key
chmod 0600 /etc/sysconfig/ssh/*key*
fi
/sbin/CheckPid /var/run/sshd.pid
end script
exec /usr/sbin/sshd -D