From 96b90524d155bdd2d3f78a0a50cf250164bfbf6c Mon Sep 17 00:00:00 2001 From: Kristof Provost Date: Thu, 26 Oct 2017 20:55:33 +0000 Subject: [PATCH] pf tests: Remove temporary files Remove the created_jails.lst and created_interfaces.lst files in the cleanup code. --- tests/sys/netpfil/pf/utils.subr | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/sys/netpfil/pf/utils.subr b/tests/sys/netpfil/pf/utils.subr index ac94ba78c0a5..f2f28ed0c66a 100644 --- a/tests/sys/netpfil/pf/utils.subr +++ b/tests/sys/netpfil/pf/utils.subr @@ -56,6 +56,7 @@ pft_cleanup() do jail -r ${jailname} done + rm created_jails.lst fi if [ -f created_interfaces.lst ]; then @@ -63,5 +64,6 @@ pft_cleanup() do ifconfig ${ifname} destroy done + rm created_interfaces.lst fi }