alfred: Add --no-sleep option to send immediately

This commit is contained in:
Jan-Philipp Litza 2014-01-16 23:46:54 +01:00
parent 238994e1e2
commit 7cca730ce4
1 changed files with 4 additions and 2 deletions

View File

@ -23,8 +23,10 @@ set -e
# 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
DELAY=$((0x$(sysconfig primary_mac | md5sum | head -c3) * $MAX_WAIT / (16**3)))
sleep $DELAY
if [ "$1" != "--no-sleep" ]; then
DELAY=$((0x$(sysconfig primary_mac | md5sum | head -c3) * $MAX_WAIT / (16**3)))
sleep $DELAY
fi
json_init
json_add_string "hostname" "$(uci get 'system.@system[0].hostname')"