From 2ecb4d28e9562eecf34af6c2729ba49836bd5673 Mon Sep 17 00:00:00 2001 From: mcbride <> Date: Mon, 25 Jul 2005 19:18:44 +0000 Subject: [PATCH] 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. --- src/etc/rc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/rc b/src/etc/rc index fd487a97..2c8bd797 100644 --- a/src/etc/rc +++ b/src/etc/rc @@ -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