16 lines
469 B
Plaintext
16 lines
469 B
Plaintext
# Install this by running "crontab crontab" (will replace existing crontab)
|
|
|
|
SHELL=/bin/bash
|
|
PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin
|
|
|
|
# m h dom mon dow cmd
|
|
|
|
# Run NilmDB processing every 5 minutes
|
|
*/5 * * * * chronic /home/nilm/data/process.sh
|
|
|
|
# Try frequently restarting the capture process in case it died
|
|
*/5 * * * * chronic /home/nilm/data/capture.sh
|
|
|
|
# Run fsck at startup
|
|
@reboot chronic nilmdb-fsck --fix --no-data /home/nilm/data/db/
|