30 lines
888 B
Text
30 lines
888 B
Text
|
{{ ansible_managed | comment }}
|
||
|
|
||
|
[Unit]
|
||
|
Description=Service for borgmatic backup
|
||
|
Wants=network-online.target
|
||
|
After=network-online.target
|
||
|
ConditionACPower=true
|
||
|
|
||
|
[Service]
|
||
|
Type=oneshot
|
||
|
ProtectSystem=full
|
||
|
CapabilityBoundingSet=CAP_DAC_READ_SEARCH CAP_NET_RAW
|
||
|
|
||
|
# Lower CPU and I/O priority.
|
||
|
Nice=19
|
||
|
CPUSchedulingPolicy=batch
|
||
|
IOSchedulingClass=best-effort
|
||
|
IOSchedulingPriority=7
|
||
|
IOWeight=100
|
||
|
|
||
|
Restart=no
|
||
|
# Prevent rate limiting of borgmatic log events. If you are using an older version of systemd that
|
||
|
# doesn't support this (pre-240 or so), you may have to remove this option.
|
||
|
LogRateLimitIntervalSec=0
|
||
|
|
||
|
# Delay start to prevent backups running during boot. Note that systemd-inhibit requires dbus and
|
||
|
# dbus-user-session to be installed.
|
||
|
ExecStartPre=sleep 1m
|
||
|
ExecStart=systemd-inhibit --who="borgmatic" --why="Prevent interrupting scheduled backup" /usr/bin/borgmatic --syslog-verbosity 1
|