diff options
-rw-r--r-- | applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js | 6 | ||||
-rw-r--r-- | applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js index 42a1e9aa8..8b3b7d399 100644 --- a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js +++ b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js @@ -104,10 +104,10 @@ function handleSectionsVal(action, section_id, option, value) { */ function handleStatus() { poll.add(function() { - L.resolveDefault(fs.stat('/var/run/travelmate.refresh'), null).then(function(res) { + L.resolveDefault(fs.stat('/var/state/travelmate.refresh'), null).then(function(res) { if (res) { - L.resolveDefault(fs.read_direct('/var/run/travelmate.refresh'), null).then(function(res) { - fs.remove('/var/run/travelmate.refresh'); + L.resolveDefault(fs.read_direct('/var/state/travelmate.refresh'), null).then(function(res) { + fs.remove('/var/state/travelmate.refresh'); if (res && res === 'ui_reload') { location.reload(); } diff --git a/applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json b/applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json index f3861e0fb..0fecc9a48 100644 --- a/applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json +++ b/applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json @@ -3,7 +3,7 @@ "description": "Grant access to LuCI app travelmate", "write": { "file": { - "/var/run/travelmate.refresh": [ "write" ] + "/var/state/travelmate.refresh": [ "write" ] }, "uci": [ "travelmate" ] }, @@ -12,7 +12,7 @@ "file": { "/etc/travelmate/*.login": [ "list" ], "/var/run/travelmate.pid": [ "read" ], - "/var/run/travelmate.refresh": [ "read" ], + "/var/state/travelmate.refresh": [ "read" ], "/tmp/trm_runtime.json": [ "read" ], "/sbin/logread -e trm-": [ "exec" ], "/usr/sbin/logread -e trm-": [ "exec" ], |