Skip to content
Snippets Groups Projects
Commit 74493b2b authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-alfred: run every minute

The run frequency and exact time affect the alfred announce interval, so we can
just run it every minute to supply alfred with the most up-to-date data.
parent 8b4474e1
No related branches found
No related tags found
No related merge requests found
...@@ -15,19 +15,9 @@ fi ...@@ -15,19 +15,9 @@ fi
# set defaults # set defaults
[ -z "$ALFRED_DATA_TYPE" ] && ALFRED_DATA_TYPE=158 [ -z "$ALFRED_DATA_TYPE" ] && ALFRED_DATA_TYPE=158
[ -z "$NET_IF" ] && NET_IF=br-client [ -z "$NET_IF" ] && NET_IF=br-client
[ -z "$MAX_WAIT" ] && MAX_WAIT=299
set -e set -e
# To avoid mass flooding the network every five minutes with all clients
# simultaneously, wait for a random time between 0 and 300 seconds, but fixed
# for each device to maintain 5 minutes between updates.
# Calculated using first 3 hex digits of the primary MAC address' MD5 hash
if [ "$1" != "--no-sleep" ]; then
DELAY=$((0x$(sysconfig primary_mac | md5sum | head -c3) * $MAX_WAIT / (16**3)))
sleep $DELAY
fi
json_init json_init
json_add_string "hostname" "$(uci get 'system.@system[0].hostname')" json_add_string "hostname" "$(uci get 'system.@system[0].hostname')"
......
*/5 * * * * /lib/gluon/alfred/announce.sh * * * * * /lib/gluon/alfred/announce.sh
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