2022-03-09 13:21:37 -07:00
|
|
|
--[[
|
|
|
|
|
|
|
|
Part of AREDN -- Used for creating Amateur Radio Emergency Data Networks
|
|
|
|
Copyright (C) 2021 Tim Wilkinson
|
|
|
|
See Contributors file for additional contributors
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation version 3 of the License.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
Additional Terms:
|
|
|
|
|
|
|
|
Additional use restrictions exist on the AREDN(TM) trademark and logo.
|
|
|
|
See AREDNLicense.txt for more info.
|
|
|
|
|
|
|
|
Attributions to the AREDN Project must be retained in the source code.
|
|
|
|
If importing this code into a new or existing project attribution
|
|
|
|
to the AREDN project must be added to the source code.
|
|
|
|
|
|
|
|
You must not misrepresent the origin of the material contained within.
|
|
|
|
|
|
|
|
Modified versions must be modified to attribute to the original source
|
|
|
|
and be marked in reasonable ways as differentiate it from the original
|
|
|
|
version
|
|
|
|
|
|
|
|
--]]
|
|
|
|
|
|
|
|
function aredn_message()
|
|
|
|
while true
|
|
|
|
do
|
|
|
|
os.execute("/usr/local/bin/aredn_message.sh")
|
2022-12-22 13:22:49 -07:00
|
|
|
local pollrate = uci.cursor():get("aredn", "@alerts[0]", "pollrate")
|
|
|
|
pollrate = tonumber(pollrate)
|
2022-03-09 13:21:37 -07:00
|
|
|
if not pollrate or pollrate <= 0 then
|
2023-10-05 14:38:05 -06:00
|
|
|
pollrate = 1 -- 1 hour default
|
2022-03-09 13:21:37 -07:00
|
|
|
end
|
|
|
|
wait_for_ticks(pollrate * 60 * 60)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return aredn_message
|