summaryrefslogtreecommitdiffstats
path: root/package/dnsmasq
diff options
context:
space:
mode:
authorAndré Erdmann <dywi@mailerd.de>2014-10-26 18:41:43 +0100
committerPeter Korsgaard <peter@korsgaard.com>2014-11-11 23:08:46 +0100
commit5f617ffa17537d701a2f645f36895fa0d695d221 (patch)
tree47edada23382977e6f02f5d34d33ee6c6e448b4f /package/dnsmasq
parent7541ec8127db2c25011b31124eaa73a6233feb08 (diff)
downloadbuildroot-5f617ffa17537d701a2f645f36895fa0d695d221.tar.gz
buildroot-5f617ffa17537d701a2f645f36895fa0d695d221.zip
sysv init scripts: fix == bashism
test a == b is not available in e.g. dash. Command(s) used for editing: q=\[\"\'\] operand="${q}?[$]?[a-zA-Z0-9_\?]+${q}?" ## doesn't detect ${VAR} test_expr="(\[\s+${operand}\s+)==(\s+${operand}\s+\])" find . -type f -name '[SK][0-9][0-9]*' | \ xargs sed -r -e "s@${test_expr}@\1=\2@g" -i Signed-off-by: André Erdmann <dywi@mailerd.de> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/dnsmasq')
-rwxr-xr-xpackage/dnsmasq/S80dnsmasq4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/dnsmasq/S80dnsmasq b/package/dnsmasq/S80dnsmasq
index 2ff0206be1..587751e5bf 100755
--- a/package/dnsmasq/S80dnsmasq
+++ b/package/dnsmasq/S80dnsmasq
@@ -7,12 +7,12 @@ case "$1" in
start)
echo -n "Starting dnsmasq: "
start-stop-daemon -S -x /usr/sbin/dnsmasq
- [ $? == 0 ] && echo "OK" || echo "FAIL"
+ [ $? = 0 ] && echo "OK" || echo "FAIL"
;;
stop)
echo -n "Stopping dnsmasq: "
start-stop-daemon -K -q -x /usr/sbin/dnsmasq
- [ $? == 0 ] && echo "OK" || echo "FAIL"
+ [ $? = 0 ] && echo "OK" || echo "FAIL"
;;
restart|reload)
$0 stop
OpenPOWER on IntegriCloud