diff options
author | Thomas Lange <code@nerdmind.de> | 2016-04-02 18:43:02 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2016-04-02 18:43:02 +0200 |
commit | f29a3163edaaa9cd075f9576c4342dd567bbbf44 (patch) | |
tree | f34e8421410ae0df03485d7fc7d20a175124f06d /Bash | |
parent | d73b478a9e9c37e7d6eebc52c803eafa92ffaf58 (diff) | |
download | snippets-f29a3163edaaa9cd075f9576c4342dd567bbbf44.tar.gz snippets-f29a3163edaaa9cd075f9576c4342dd567bbbf44.tar.xz snippets-f29a3163edaaa9cd075f9576c4342dd567bbbf44.zip |
Comments changed
Diffstat (limited to 'Bash')
-rwxr-xr-x | Bash/iptables-whiteblacklisting.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bash/iptables-whiteblacklisting.sh b/Bash/iptables-whiteblacklisting.sh index 530c801..fad15e8 100755 --- a/Bash/iptables-whiteblacklisting.sh +++ b/Bash/iptables-whiteblacklisting.sh @@ -53,8 +53,8 @@ IPTABLES_SAVE_V6=`which ip6tables-save` # Wrapper function for IPTables with IPv4 and IPv6 #=============================================================================== IPTABLES() { - ${IPTABLES_V4} $@ # Executes the given arguments with IPTables for IPv4 - ${IPTABLES_V6} $@ # Executes the given arguments with IPTables for IPv6 + ${IPTABLES_V4} $@ # Appends the given argument string to IPTables for IPv4 + ${IPTABLES_V6} $@ # Appends the given argument string to IPTables for IPv6 } #=============================================================================== |