mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-26 10:53:39 +01:00
pf tests: Only do post-test logging when specifically enabled
The pf tests have the ability to log state information (pf rules, pf states, interfaces, ...) on exit (i.e. on success or on error). This is useful, but only in specific cases. When it's not needed it may get in the way of clear output. Test scripts can add 'debug' to the pft_init call to enable this for the specified test. Reviewed by: brd Sponsored by: Rubicon Communications, LLC ("Netgate") Differential Revision: https://reviews.freebsd.org/D34133
This commit is contained in:
parent
1094189965
commit
34478b73bf
@ -59,7 +59,10 @@ pft_onerror()
|
||||
|
||||
pft_init()
|
||||
{
|
||||
trap pft_onerror EXIT
|
||||
if [ "$1" == "debug" ]
|
||||
then
|
||||
trap pft_onerror EXIT
|
||||
fi
|
||||
|
||||
vnet_init
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user