[luci] stop/start flukso daemon after form commit as well
This commit is contained in:
parent
ff797ecd91
commit
32699fd646
|
@ -39,9 +39,21 @@ avahi_start() {
|
||||||
[ -n $AVAHI ] && /etc/init.d/avahi-daemon start
|
[ -n $AVAHI ] && /etc/init.d/avahi-daemon start
|
||||||
}
|
}
|
||||||
|
|
||||||
|
flukso_stop() {
|
||||||
|
[ -s /var/run/fluksod/pid ] && {
|
||||||
|
FLUKSO=1
|
||||||
|
/etc/init.d/flukso stop
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flukso_start() {
|
||||||
|
[ -n $FLUKSO ] && /etc/init.d/flukso start
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
lock "/var/run/luci-reload"
|
lock "/var/run/luci-reload"
|
||||||
avahi_stop
|
avahi_stop
|
||||||
|
flukso_stop
|
||||||
|
|
||||||
config_load ucitrack
|
config_load ucitrack
|
||||||
|
|
||||||
|
@ -49,6 +61,7 @@ for i in $*; do
|
||||||
config_foreach apply_config $i $i
|
config_foreach apply_config $i $i
|
||||||
done
|
done
|
||||||
|
|
||||||
|
flukso_start
|
||||||
avahi_start
|
avahi_start
|
||||||
rm -f "/var/run/luci-reload-status"
|
rm -f "/var/run/luci-reload-status"
|
||||||
lock -u "/var/run/luci-reload"
|
lock -u "/var/run/luci-reload"
|
||||||
|
|
Loading…
Reference in New Issue