summaryrefslogtreecommitdiffstats
path: root/etc/rc.shutdown
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-07-09 19:35:49 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-07-09 19:35:49 +0000
commit3b18f1753b6805019a44f9c7df7d70e403565a40 (patch)
tree6597c84aad7ea0f029bb0bbaaea52f17ba26c66d /etc/rc.shutdown
parent3e3fe496be07f44267d0250003fece27959b906b (diff)
downloadpfsense-3b18f1753b6805019a44f9c7df7d70e403565a40.zip
pfsense-3b18f1753b6805019a44f9c7df7d70e403565a40.tar.gz
On shutdown call /etc/sshd and alert we're stopping so it can compare /root/.authorized_keys with the config.xml version
Diffstat (limited to 'etc/rc.shutdown')
-rwxr-xr-xetc/rc.shutdown26
1 files changed, 15 insertions, 11 deletions
diff --git a/etc/rc.shutdown b/etc/rc.shutdown
index 5059aa5..16cecbb 100755
--- a/etc/rc.shutdown
+++ b/etc/rc.shutdown
@@ -1,29 +1,33 @@
#!/bin/sh
echo
-echo
echo "pfSense is now shutting down ..."
echo
stty status '^T'
# Set shell to ignore SIGINT (2), but not children;
-# shell catches SIGQUIT (3) and returns to single user after fsck.
trap : 2
-trap : 3 # shouldn't be needed
HOME=/; export HOME
PATH=/sbin:/bin:/usr/sbin:/usr/bin
export PATH
-echo -n "Bringing interfaces down: ["
-for ci in `/sbin/ifconfig | grep "carp[0-999]" | cut -d":" -f1`; do
- echo -n " "
- echo -n $ci
- /sbin/ifconfig $ci down
- /sbin/ifconfig $ci destroy
-done
-echo " ]"
+CARPINTS=`/sbin/ifconfig | grep "carp[0-999]" | cut -d":" -f1`
+if [ $CARPINTS -gt 0 ]; then
+ echo -n "Bringing CARP interfaces down: ["
+ for ci in `/sbin/ifconfig | grep "carp[0-999]" | cut -d":" -f1`; do
+ echo -n " "
+ echo -n $ci
+ /sbin/ifconfig $ci down
+ /sbin/ifconfig $ci destroy
+ done
+ echo " ]"
+fi
echo
echo
+# Call sshd and alert we're shutting down so it can sync
+/etc/sshd stop
+echo
+echo \ No newline at end of file
OpenPOWER on IntegriCloud