Files
homelab-docs/scripts/systemd
Andrey 604f0c705f Update container documentation to reflect disk space adjustments and Docker log management
Expand the root disk size from 35 GB to 50 GB and implement log size limits for Docker containers. Add details about the new monitoring dashboard for homelab services, including deployment instructions and access URL. Ensure clarity on log rotation policies and risks associated with disk space usage.
2026-02-28 17:10:34 +03:00
..

Systemd unit-файлы для бэкапов и мониторинга

Копировать на хост Proxmox в /etc/systemd/system/:

cp *.service *.timer /etc/systemd/system/
systemctl daemon-reload

Включить все таймеры:

for t in backup-*.timer notify-vzdump-success.timer verify-*.timer backup-watchdog-timers.timer backup-healthcheck-ping.timer; do
  systemctl enable --now "$t" 2>/dev/null || true
done

Проверка:

systemctl list-timers --all | grep backup

Перед миграцией с cron — отключить задания в crontab (crontab -e).