mirror of
https://github.com/fwbuilder/fwbuilder
synced 2025-10-16 15:38:43 +02:00
21 lines
499 B
Bash
Executable File
21 lines
499 B
Bash
Executable File
#!/bin/sh
|
|
|
|
XMLFILE="objects-for-regression-tests.fwb"
|
|
fwbedit list -f $XMLFILE -o /User/Firewalls -c -F%name% | \
|
|
sort | while read fwobj
|
|
do
|
|
echo "echo"
|
|
echo "echo \"============================ $fwobj\""
|
|
echo "fwb_pf -v -f $XMLFILE -xt $fwobj"
|
|
done
|
|
|
|
XMLFILE="cluster-tests.fwb"
|
|
fwbedit list -f $XMLFILE -o /User/Clusters -c -F%name% | \
|
|
sort | while read fwobj
|
|
do
|
|
echo "echo"
|
|
echo "echo \"============================ $fwobj\""
|
|
echo "fwb_pf -v -f $XMLFILE -xt -xc $fwobj"
|
|
done
|
|
|