blob: ce66bd64ba9c9052fcdbd15ec5dbcec2d4240e3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
set -e
RULESET="add table x
add chain x y
flush ruleset
add table w
add chain w y"
$NFT -f - <<< "$RULESET"
if [ $? -ne 0 ] ; then
echo "E: unable to load good ruleset" >&2
exit 1
fi
|