]> git.donarmstrong.com Git - wannabuild.git/blob - etc/cron/Makefile
Auto-committed schema changes.
[wannabuild.git] / etc / cron / Makefile
1 CRONTAB = $(CURDIR)/crontab
2
3 install:
4         @if [ `whoami` = wbadm ]; then \
5             crontab $(CRONTAB); \
6         else \
7             echo >&2 'Error: must run as user wbadm.'; \
8             exit 1; \
9         fi
10
11 check:
12         @-crontab -l | diff -u $(CRONTAB) -
13