summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/rule_management/0006replace_1
blob: 5dfcba02671cfae289b3cb435818e212a1fba976 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

# tests for Netfilter bug #965 and the related fix
# (regarding rule management with a given position/handle spec)

set -e
$NFT add table t
$NFT add chain t c
# position keyword with replace action is not allowed, this should fail
$NFT replace rule t c position 2 drop 2>/dev/null
echo "E: allowed replace with position specification" >&2