20 lines
438 B
Text
20 lines
438 B
Text
|
|
# Managed by Ansible — do not edit by hand.
|
||
|
|
# pgBackRest weekly full backup.
|
||
|
|
|
||
|
|
[Unit]
|
||
|
|
Description=pgBackRest full backup ({{ pgbackrest_stanza }})
|
||
|
|
Wants=network-online.target
|
||
|
|
After=network-online.target
|
||
|
|
|
||
|
|
[Service]
|
||
|
|
Type=oneshot
|
||
|
|
User=postgres
|
||
|
|
Group=postgres
|
||
|
|
ExecStart=/usr/bin/pgbackrest --stanza={{ pgbackrest_stanza }} --type=full backup
|
||
|
|
Nice=10
|
||
|
|
IOSchedulingClass=best-effort
|
||
|
|
IOSchedulingPriority=7
|
||
|
|
|
||
|
|
[Install]
|
||
|
|
WantedBy=multi-user.target
|