diff options
author | Anton Lindqvist <anton@cvs.openbsd.org> | 2021-09-17 05:59:17 +0000 |
---|---|---|
committer | Anton Lindqvist <anton@cvs.openbsd.org> | 2021-09-17 05:59:17 +0000 |
commit | 78d1b79c8c54e350a7cb74681a7624c1ab9cbe32 (patch) | |
tree | 3ebed806df78e05a617f779f5f0be4fca7b33525 /regress/sbin | |
parent | a227a26963461392b8af083c50c10f609a5db45d (diff) |
add missing sudo
Diffstat (limited to 'regress/sbin')
-rw-r--r-- | regress/sbin/pfctl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/sbin/pfctl/Makefile b/regress/sbin/pfctl/Makefile index 7813ad3d7a3..7beb24d0101 100644 --- a/regress/sbin/pfctl/Makefile +++ b/regress/sbin/pfctl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.231 2017/12/12 19:49:19 bluhm Exp $ +# $OpenBSD: Makefile,v 1.232 2021/09/17 05:59:16 anton Exp $ # TARGETS # pf: feed pfNN.in through pfctl and check whether the output matches pfNN.ok @@ -67,7 +67,7 @@ PFAIL_TARGETS+=pfail${n} PFAIL_UPDATES+=pfail${n}-update pfail${n}: - ${PFCTL} -o none -nv -f - < ${.CURDIR}/pfail${n}.in 2>&1 | \ + ${SUDO} ${PFCTL} -o none -nv -f - < ${.CURDIR}/pfail${n}.in 2>&1 | \ diff -u ${.CURDIR}/pfail${n}.ok /dev/stdin pfail${n}-update: |