10 lines
339 B
Text
10 lines
339 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# reverting for a running system that still needs access to old style
|
||
|
# rules
|
||
|
|
||
|
update-alternatives --set iptables /usr/sbin/iptables-legacy
|
||
|
update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy
|
||
|
update-alternatives --set arptables /usr/sbin/arptables-legacy
|
||
|
update-alternatives --set ebtables /usr/sbin/ebtables-legacy
|