Index: tests/sys/netpfil/pf/nat.sh =================================================================== --- tests/sys/netpfil/pf/nat.sh +++ tests/sys/netpfil/pf/nat.sh @@ -52,7 +52,7 @@ jexec nat sysctl net.inet.ip.forwarding=1 jexec echo ifconfig ${epair_echo}b 198.51.100.2/24 up - jexec echo /usr/sbin/inetd $(atf_get_srcdir)/echo_inetd.conf + jexec echo /usr/sbin/inetd -p inetd-echo.pid $(atf_get_srcdir)/echo_inetd.conf # Enable pf! jexec nat pfctl -e @@ -80,6 +80,7 @@ exhaust_cleanup() { + rm -f inetd-echo.pid pft_cleanup } Index: tests/sys/netpfil/pf/synproxy.sh =================================================================== --- tests/sys/netpfil/pf/synproxy.sh +++ tests/sys/netpfil/pf/synproxy.sh @@ -53,7 +53,7 @@ jexec singsing ifconfig ${link}b 198.51.100.2/24 up jexec singsing route add default 198.51.100.1 - jexec singsing /usr/sbin/inetd $(atf_get_srcdir)/echo_inetd.conf + jexec singsing /usr/sbin/inetd -p inetd-singsing.pid $(atf_get_srcdir)/echo_inetd.conf jexec alcatraz pfctl -e pft_set_rules alcatraz "set fail-policy return" \ @@ -75,6 +75,7 @@ synproxy_cleanup() { + rm -f inetd-singsing.pid pft_cleanup }