1#!/bin/sh
2
3XMLFILE="objects-for-regression-tests.fwb"
4fwbedit list -f $XMLFILE -o /User/Firewalls -c -F%name% | \
5    sort | while read fwobj
6do
7  echo "echo"
8  echo "echo \"============================ $fwobj\""
9  echo "fwb_procurve_acl -v -f $XMLFILE -xt $fwobj"
10done
11
12exit 0
13
14XMLFILE="cluster-tests.fwb"
15fwbedit list -f $XMLFILE -o /User/Clusters -c -F%name% | \
16    sort | while read fwobj
17do
18  echo "echo"
19  echo "echo \"============================ $fwobj\""
20  echo "fwb_procurve_acl -v -f $XMLFILE -xt -xc $fwobj"
21done
22
23