homeserver/roles/mgrote.ecc-rasdaemon/templates/rasdaemon-cron.sh

13 lines
373 B
Bash
Raw Normal View History

2020-08-18 11:57:53 +02:00
#!/bin/bash
{{ file_header | default () }}
2020-08-18 11:57:53 +02:00
#####################
## https://www.tothenew.com/blog/foolproof-your-bash-script-some-best-practices/
set -o nounset
set -o errexit
# trap ctrl-c and call ctrl_c()
trap ctrl_c INT
(
/usr/sbin/ras-mc-ctl --status | ts '%Y-%m-%d - %H-%M-%S'
/usr/sbin/ras-mc-ctl --errors | ts '%Y-%m-%d - %H-%M-%S'
2020-08-18 11:57:53 +02:00
) >> /var/log/rasdaemon.log 2>&1