mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-08 21:34:25 +00:00
13 lines
297 B
Bash
13 lines
297 B
Bash
#!/usr/bin/env sh
|
|
|
|
systemctl --enable --now 'crond.service'
|
|
journalctl -xefu 'crond.service'
|
|
|
|
# Validate crontab files
|
|
crontab -T '/etc/cron.d/prometheus-backup'
|
|
crontab -T '/var/spool/cron/root'
|
|
|
|
run-parts --list '/etc/cron.daily'
|
|
run-parts --test '/etc/cron.hourly'
|
|
run-parts '/etc/cron.weekly'
|