summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/rule_management/0005replace_1
blob: d8d64477d08adacbb4db083d8d534ecd4fd09c7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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
# kernel should return ENOENT

$NFT replace rule t c handle 2 drop 2>/dev/null || exit 0
echo "E: missing kernel ENOENT" >&2
exit 1