system-helpers/etc/systemd/user/restic-create@.service

19 lines
757 B
SYSTEMD
Raw Normal View History

2022-06-04 23:09:23 +00:00
[Unit]
Description=Run restic create script for %I utilizing ~/.config/restic/%I/create.sh file using env ~/.config/restic/%I/env
2022-06-04 23:09:23 +00:00
OnFailure=systemd_failure_notify@%n.service
Wants=network-online.target
After=network-online.target
Requires=network-online.target
[Service]
Type=oneshot
#ExecStartPre=/bin/bash -c 'until host captiveportal.myservermanager.com; do sleep 1; done'
ExecStart=sh %h/.config/restic/%I/create.sh
2022-06-04 23:09:23 +00:00
Environment="PATH=/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:%h/.bin"
Environment="SSH_AUTH_SOCK=/run/user/%u/keyring/ssh"
Environment="RESTIC_FILE_INCLUDE=%h/.config/restic/%I/include"
Environment="RESTIC_FILE_EXCLUDE=%h/.config/restic/%I/exclude"
EnvironmentFile=%h/.config/restic/%I/env
2022-06-04 23:09:23 +00:00
[Install]
WantedBy=default.target