diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-05-06 14:44:48 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-05-06 14:44:48 +0000 |
commit | cfc55699a6b039f97fd1d29e7b947c0d1d10db6c (patch) | |
tree | 9aa69da0f3997ae64d32e853d391b879ab405220 | |
parent | 0c48d8454414955108f51c84830f03e70425bc88 (diff) | |
download | pfsense-cfc55699a6b039f97fd1d29e7b947c0d1d10db6c.zip pfsense-cfc55699a6b039f97fd1d29e7b947c0d1d10db6c.tar.gz |
Full patch to ifconfig
-rwxr-xr-x | etc/rc.shutdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.shutdown b/etc/rc.shutdown index e223114..e1bc020 100755 --- a/etc/rc.shutdown +++ b/etc/rc.shutdown @@ -11,7 +11,7 @@ HOME=/; export HOME PATH=/sbin:/bin:/usr/sbin:/usr/bin export PATH -for ci in `ifconfig | grep "carp[0-999]" | cut -d":" -f1`; do +for ci in `/sbin/ifconfig | grep "carp[0-999]" | cut -d":" -f1`; do echo Bringing $ci down ... /sbin/ifconfig $ci down /sbin/ifconfig $ci destroy |