Blob Blame History Raw
#!/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