blob: c50a0a9e6e98fafdab3fc8f4ce66055b51ba1a6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Global variables
SHELL=/bin/sh
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/
# Local variables
#services="monit"
# Fields:
# minute (0-59)
# hour (0-23)
# day of month (1-31)
# month of year (1-12)
# day of week (0-6, Sunday == 0)
* * * * * root test -x /usr/local/sbin/openrc-restart-crashed && /usr/local/sbin/openrc-restart-crashed --quiet -- $services
# vi: set nowrap:
|