diff options
author | 2004-01-26 04:20:48 +0000 | |
---|---|---|
committer | 2004-01-26 04:20:48 +0000 | |
commit | 965fbe4f156f957d72c446432834226743550922 (patch) | |
tree | e220c7b73c3ff3d571c7db04c476f0ec311677cc | |
parent | - use SIOC[GS]WAVELAN. (diff) | |
download | wireguard-openbsd-965fbe4f156f957d72c446432834226743550922.tar.xz wireguard-openbsd-965fbe4f156f957d72c446432834226743550922.zip |
if one destroy fails, keep trying the others
-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} |