fix indentation, quotes, stderr

This commit is contained in:
Christof Schulze 2016-12-06 22:13:35 +01:00
parent d1110f3cdc
commit 9e79a9f1ef

View File

@ -2,17 +2,15 @@
. /lib/functions/service.sh
DEVLIST=/var/run/gluon-respondd.devs
ifname_to_dev () {
ifstatus client "$1"|jsonfilter -e "@.device"
ifstatus client "$1"|jsonfilter -e "@.device"
}
case "$ACTION" in
ifup)
DEVICE="$(ifname_to_dev "$INTERFACE")"
ifup)
DEVICE="$(ifname_to_dev "$INTERFACE")"
[ "$DEVICE" != "$(cat /lib/gluon/respondd/client.dev)" ] ||
/etc/init.d/gluon-respondd restart_if_running &
;;
[ "$DEVICE" != "$(cat /lib/gluon/respondd/client.dev 2>/dev/null)" ] ||
/etc/init.d/gluon-respondd restart_if_running &
;;
esac