summaryrefslogtreecommitdiffstats
path: root/iptables/tests/shell/testcases/chain/0005rename_1
blob: 7261b6dcf2b233049e53a24762b8b8ee041ec631 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

set -e

$IPTABLES -N c1
$IPTABLES -N c2
$IPTABLES -E c1 c2

if [ $? -eq 0 ] ; then
        echo "E: Renamed with existing chain" >&2
        exit 0
fi