[openssh] use the new shutdown function and kill all openssh sessions when the system...
authorPeter Wagner <​tripolar@gmx.at>
Mon, 13 Dec 2010 18:39:14 +0000 (18:39 +0000)
committerPeter Wagner <​tripolar@gmx.at>
Mon, 13 Dec 2010 18:39:14 +0000 (18:39 +0000)
SVN-Revision: 24549

net/openssh/files/sshd.init

index ec76bb6ab578741d6c6ba76f5a5c51d90ba2ab2c..58b5ce72061be370e17ec4a383ee544afe8f7a52 100644 (file)
@@ -23,3 +23,7 @@ start() {
 stop() {
        kill $(cat /var/run/sshd.pid)
 }
+
+shutdown() {
+       killall sshd
+}