12 lines
191 B
Bash
12 lines
191 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
if [[ "$(crontab-dir-generate-crontab)" == "$(crontab -l)" ]]; then
|
||
|
echo "crontab is up to date"
|
||
|
exit 0
|
||
|
else
|
||
|
echo "crontab needs update"
|
||
|
exit 1
|
||
|
fi
|