diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-01-26 04:20:49 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-01-26 04:20:49 +0000 |
commit | 374ad7b43a5ccc762039271fb710d6c7cc99f122 (patch) | |
tree | c4e151cc43b060870e28b9d24c65dd60efcab1b6 /regress/sbin | |
parent | b9dcb9a922ff564a9e5a547751aa84d096a19105 (diff) |
if one destroy fails, keep trying the others
Diffstat (limited to 'regress/sbin')
-rw-r--r-- | regress/sbin/pfctl/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/sbin/pfctl/Makefile b/regress/sbin/pfctl/Makefile index a234cfbca4d..0496ab24d5b 100644 --- a/regress/sbin/pfctl/Makefile +++ b/regress/sbin/pfctl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.171 2004/01/26 02:34:23 david Exp $ +# $OpenBSD: Makefile,v 1.172 2004/01/26 04:20:48 deraadt Exp $ # TARGETS # pf: feed pfNN.in through pfctl and check wether the output matches pfNN.ok @@ -37,9 +37,9 @@ PFIF2IP=1 2 3 -${SUDO} ifconfig tun1000001 create .END: - ${SUDO} ifconfig lo1000000 destroy - ${SUDO} ifconfig tun1000000 destroy - ${SUDO} ifconfig tun1000001 destroy + -${SUDO} ifconfig lo1000000 destroy + -${SUDO} ifconfig tun1000000 destroy + -${SUDO} ifconfig tun1000001 destroy .endif .for n in ${PFFAIL} |