Skip to content
Snippets Groups Projects
Commit d7f3031e authored by Jan-Tarek Butt's avatar Jan-Tarek Butt
Browse files

add two new upgrade script for siteconf

parent 81d9e9fa
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/lua
local site = require 'gluon.site_config'
local uci = require('luci.model.uci').cursor()
local config = 'gluon-node-info'
local autolocation = uci:get(config, uci:get_first(config, 'location'), 'auto_location')
if site.location then
default_autolocation = site.location.autolocation
else
default_autolocation = autolocation
end
if autolocation == 0 then
uci:set(config, uci:get_first(config, 'location'), 'auto_location', default_autolocation)
uci:save(config)
uci:commit(config)
end
#!/usr/bin/lua
local site = require 'gluon.site_config'
local uci = require('luci.model.uci').cursor()
local config = 'gluon-node-info'
local interval = uci:get(config, uci:get_first(config, 'location'), 'refresh_interval')
if site.location then
default_interval = site.location.interval
else
default_interval = interval
end
if autolocation == 0 then
uci:set(config, uci:get_first(config, 'location'), 'refresh_interval', default_interval)
uci:save(config)
uci:commit(config)
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment