blob: 87fec605c3431e583d68c32e947584d926c80a53 (
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
# kernel ENOENT
$NFT delete rule t c handle 3333 2>/dev/null
echo "E: missing kernel ENOENT" >&2
|