16 lines
520 B
SYSTEMD
16 lines
520 B
SYSTEMD
|
[Unit]
|
||
|
Description=Run restic report script for %I utilizing /etc/restic/%I/report.sh file using env /etc/restic/%I/env
|
||
|
OnFailure=systemd_failure_notify@%n.service
|
||
|
Wants=network-online.target
|
||
|
After=network-online.target
|
||
|
Requires=network-online.target
|
||
|
|
||
|
[Service]
|
||
|
Type=oneshot
|
||
|
ExecStart=sh /etc/restic/%I/report.sh
|
||
|
Environment="PATH=/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:%h/.bin"
|
||
|
Environment="SSH_AUTH_SOCK=/run/user/%u/keyring/ssh"
|
||
|
EnvironmentFile=/etc/restic/%I/env
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|