Skip to content
Snippets Groups Projects
Commit cd6a0127 authored by Bob Mottram's avatar Bob Mottram
Browse files

Consistent carriage returns

parent 417bf366
No related branches found
No related tags found
No related merge requests found
......@@ -617,9 +617,9 @@ iptables -A INPUT -p icmp -j DROP
# Save the settings
iptables-save > /etc/firewall.conf
ip6tables-save > /etc/firewall6.conf
echo '#!/bin/sh' > /etc/network/if-up.d/iptables
echo 'iptables-restore < /etc/firewall.conf' >> /etc/network/if-up.d/iptables
echo 'ip6tables-restore < /etc/firewall6.conf' >> /etc/network/if-up.d/iptables
printf '#!/bin/sh\n' > /etc/network/if-up.d/iptables
printf 'iptables-restore < /etc/firewall.conf\n' >> /etc/network/if-up.d/iptables
printf 'ip6tables-restore < /etc/firewall6.conf\n' >> /etc/network/if-up.d/iptables
chmod +x /etc/network/if-up.d/iptables
#+END_SRC
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment