Add Healthchecks service details to architecture and backup documentation, including its role as a Dead man's switch for backups. Update backup scripts to utilize systemd timers instead of cron for improved scheduling. Enhance network topology documentation to reflect Healthchecks integration in the VPS Miran setup. This update clarifies backup processes and enhances overall system reliability.
16 lines
447 B
Desktop File
16 lines
447 B
Desktop File
# Проверка локального vzdump за последние 2 ч, отправка сводки в Telegram
|
|
# Задание vzdump в Proxmox UI выполняется в 02:00
|
|
|
|
[Unit]
|
|
Description=Notify vzdump success (check dump dir, send Telegram)
|
|
After=network-online.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=/root/scripts/notify-vzdump-success.sh
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|