pf tests: Remove temporary files

Remove the created_jails.lst and created_interfaces.lst files in the
cleanup code.
This commit is contained in:
Kristof Provost 2017-10-26 20:55:33 +00:00
parent 57d465298a
commit 96b90524d1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=325022

View File

@ -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
}