15 lines
489 B
SYSTEMD
15 lines
489 B
SYSTEMD
|
|
[Unit]
|
||
|
|
Description=Daily backup: PVC snapshots + SQLite + pfsense to sda
|
||
|
|
After=network-online.target
|
||
|
|
|
||
|
|
[Service]
|
||
|
|
Type=oneshot
|
||
|
|
ExecStart=/usr/local/bin/daily-backup
|
||
|
|
StandardOutput=journal
|
||
|
|
StandardError=journal
|
||
|
|
SyslogIdentifier=daily-backup
|
||
|
|
# 4h budget — the snapshot mount + LUKS decrypt + rsync + sqlite scan loop
|
||
|
|
# scales with the number of PVCs (118 today). Hit the 1h ceiling around week
|
||
|
|
# 18 of 2026 and silently SIGTERM'd for 10 days. Bumped to 4h with margin.
|
||
|
|
TimeoutStartSec=14400
|