dfb3d5072a
Since openssh-6.0, the ssh-keygen app has supported a -A option, which creates any missing keys. This frees us of having to add new ssh-keygen invocations as new key types are introduced. This also frees us of having to know the default key names and locations. So this patch replaces all the the init.d script invocations with a single "ssh-keygen -A" call. Note: the systemd service script *already* uses this option. Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
48 lines
532 B
Bash
48 lines
532 B
Bash
#!/bin/sh
|
|
#
|
|
# sshd Starts sshd.
|
|
#
|
|
|
|
# Make sure the ssh-keygen progam exists
|
|
[ -f /usr/bin/ssh-keygen ] || exit 0
|
|
|
|
# Create any missing keys
|
|
/usr/bin/ssh-keygen -A
|
|
|
|
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 $?
|
|
|