mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
12 lines
263 B
Bash
12 lines
263 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'
|
|
|
|
run-parts --list '/etc/cron.daily'
|
|
run-parts --test '/etc/cron.hourly'
|
|
run-parts '/etc/cron.weekly'
|