l radio-news: retry every step 5 times

This commit is contained in:
lassulus 2022-02-08 18:03:58 +01:00
parent c1d8815a92
commit 9e1b663d5b

View File

@ -32,12 +32,13 @@ in
send_to_radio send_to_radio
weather_report weather_report
pkgs.curl pkgs.curl
pkgs.retry
]; ];
script = '' script = ''
set -efu set -efu
newsshow | retry -t 5 -d 10 -- newsshow |
curl -SsG http://tts.r/api/tts --data-urlencode 'text@-' | retry -t 5 -d 10 -- curl -SsG http://tts.r/api/tts --data-urlencode 'text@-' |
send_to_radio retry -t 5 -d 10 -- send_to_radio
''; '';
startAt = "*:00:00"; startAt = "*:00:00";
}; };