# Close sshd sessions before shutting down the network; see FS#17389.
sshd_close_sessions () {
if ck_daemon sshd; then
return
fi
/etc/rc.d/sshd stop
stat_busy "Stopping Secure Shell Sessions"
for i in $(pgrep sshd); do
if readlink -q /proc/$i/exe | grep -q '^/usr/sbin/sshd'; then
kill $i
fi
done &>/dev/null
stat_done
}
add_hook shutdown_start sshd_close_sessions