summaryrefslogtreecommitdiff
path: root/testing/openssh/sshd.close-sessions
diff options
context:
space:
mode:
Diffstat (limited to 'testing/openssh/sshd.close-sessions')
-rw-r--r--testing/openssh/sshd.close-sessions14
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/openssh/sshd.close-sessions b/testing/openssh/sshd.close-sessions
new file mode 100644
index 000000000..208583238
--- /dev/null
+++ b/testing/openssh/sshd.close-sessions
@@ -0,0 +1,14 @@
+# Close sshd sessions before shutting down the network; see FS#17389.
+
+sshd_close_sessions () {
+ /etc/rc.d/sshd stop
+ stat_busy "Stopping Secure Shell Sessions"
+ for i in $(pgrep sshd); do
+ if readlink -q /proc/$i/exe &>/dev/null | grep -q '^/usr/sbin/sshd'; then
+ kill $i &>/dev/null
+ fi
+ done
+ stat_done
+}
+
+add_hook shutdown_start sshd_close_sessions