Fix wrong restic prune service calling wrong file
This commit is contained in:
parent
458d48291f
commit
da266c680b
2 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
[Unit]
|
||||
Description=Run restic check script for %I utilizing ~/.config/restic/%I-check.sh file using env ~/.config/restic/%I.env
|
||||
Description=Run restic prune script for %I utilizing ~/.config/restic/%I-prune.sh file using env ~/.config/restic/%I.env
|
||||
OnFailure=systemd_failure_notify@%n.service
|
||||
Wants=network-online.target
|
||||
After=network-online.target
|
||||
|
@ -7,7 +7,7 @@ Requires=network-online.target
|
|||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=sh %h/.config/restic/%I-check.sh
|
||||
ExecStart=sh %h/.config/restic/%I-prune.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=%h/.config/restic/%I.env
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[Unit]
|
||||
Description=Run restic check script for %I utilizing ~/.config/restic/%I-check.sh file using env ~/.config/restic/%I.env
|
||||
Description=Run restic prune script for %I utilizing ~/.config/restic/%I-prune.sh file using env ~/.config/restic/%I.env
|
||||
OnFailure=systemd_failure_notify@%n.service
|
||||
Wants=network-online.target
|
||||
After=network-online.target
|
||||
|
@ -7,7 +7,7 @@ Requires=network-online.target
|
|||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=sh %h/.config/restic/%I-check.sh
|
||||
ExecStart=sh %h/.config/restic/%I-prune.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=%h/.config/restic/%I.env
|
||||
|
|
Loading…
Reference in a new issue