blob: d1900d668799e6018c8090d13900e3b485fd1564 (
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
# this should fail, we don't allow delete with position
$NFT delete rule t c position 2 drop 2>/dev/null || exit 0
echo "E: allowed position spec with delete action" >&2
exit 1
|