flm01/mote/v2/openwrt/package/luci/patches/200-prevent_concurrent_luci...

27 lines
587 B
Diff

--- a/libs/uci/root/sbin/luci-reload (revision 3404)
+++ b/libs/uci/root/sbin/luci-reload (revision 6271)
@@ -6,5 +6,7 @@
config_get exec "$1" exec
config_get test "$1" test
-
+
+ echo "$2" > "/var/run/luci-reload-status"
+
[ -n "$init" ] && reload_init "$2" "$init" "$test"
[ -n "$exec" ] && reload_exec "$2" "$exec" "$test"
@@ -27,8 +29,12 @@
}
+lock "/var/run/luci-reload"
+
config_load ucitrack
-for i in $*
-do
+for i in $*; do
config_foreach apply_config $i $i
done
+
+rm -f "/var/run/luci-reload-status"
+lock -u "/var/run/luci-reload"