Browse Source

Fix the test for successful ifconfig of carp interface on shutdown, makes

graceful shutdown work correctly.
ok mpf@ deraadt@ a long time ago, committed to local repository by accident.
OPENBSD_3_8
mcbride 19 years ago
parent
commit
2ecb4d28e9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/etc/rc

+ 2
- 2
src/etc/rc View File

@ -1,4 +1,4 @@
# $OpenBSD: rc,v 1.270 2005/06/19 16:55:10 deraadt Exp $
# $OpenBSD: rc,v 1.271 2005/07/25 19:18:44 mcbride Exp $
# System startup script run by init on autoboot
# or after single-user.
@ -127,7 +127,7 @@ if [ X"$1" = X"shutdown" ]; then
test "$if" = "carp[0-9]*" && continue
ifconfig $if > /dev/null 2>&1
if [ $? -ne 0 ]; then
if [ $? -eq 0 ]; then
ifconfig $if down
fi
done


Loading…
Cancel
Save