Skip to content

Commit

Permalink
fix bash syntax for set_ipv6_loopback_traffic
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Hagenest committed Dec 7, 2022
1 parent 8fcaabe commit 816e30b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# platform = multi_platform_sle

if [ $(sysctl -n net.ipv6.conf.all.disable_ipv6) -eq 0 ]; then
if [ "$(sysctl -n net.ipv6.conf.all.disable_ipv6)" -eq 0 ]; then
# IPv6 is not disabled, so run the script
ip6tables -A INPUT -i lo -j ACCEPT
ip6tables -A OUTPUT -o lo -j ACCEPT
Expand Down

0 comments on commit 816e30b

Please sign in to comment.