All announce.d scripts have been moved to /lib/gluon/announce/announce.d The script /lib/gluon/announce/announce.lua will collect all information and output json.
7 lines
259 B
Plaintext
7 lines
259 B
Plaintext
if uci:get_first('gluon-node-info', 'location', 'share_location', false) then
|
|
return {
|
|
latitude = tonumber(uci:get_first('gluon-node-info', 'location', 'latitude')),
|
|
longitude = tonumber(uci:get_first('gluon-node-info', 'location', 'longitude')),
|
|
}
|
|
end
|