From 00ada425224b6007d1720a8e59d3a5030d6dcbac Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 11 Feb 2014 22:19:55 +0000 Subject: [PATCH] Use single quotes for maximum compatibility #1 --- beaglebone.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beaglebone.txt b/beaglebone.txt index 42c08413..6a278394 100644 --- a/beaglebone.txt +++ b/beaglebone.txt @@ -441,8 +441,8 @@ Save and exit chmod +x /tmp/firewall.sh . /tmp/firewall.sh iptables-save > /etc/firewall.conf -echo "#!/bin/sh" > /etc/network/if-up.d/iptables -echo "iptables-restore < /etc/firewall.conf" >> /etc/network/if-up.d/iptables +echo '#!/bin/sh' > /etc/network/if-up.d/iptables +echo 'iptables-restore < /etc/firewall.conf' >> /etc/network/if-up.d/iptables chmod +x /etc/network/if-up.d/iptables rm /tmp/firewall.sh #+END_SRC