Use Pre function to unlock repo

This commit is contained in:
RealStickman 2021-05-29 17:24:36 +02:00
parent f4bd8572ae
commit 59c4e25c7d
2 changed files with 4 additions and 2 deletions

View File

@ -2,6 +2,7 @@
Description=Restic home backup
[Service]
Type=oneshot
ExecStart=restic -r $RESTIC_REPOSITORY unlock; restic backup --verbose --tag systemd-home.timer $BACKUP_EXCLUDES $BACKUP_PATHS --limit-upload=2048
ExecStartPre=-restic -r $RESTIC_REPOSITORY unlock
ExecStart=restic backup --verbose --tag systemd-home.timer $BACKUP_EXCLUDES $BACKUP_PATHS --limit-upload=2048
ExecStartPost=restic forget --verbose --tag systemd-home.timer --group-by "paths,tags" --keep-daily $RETENTION_DAYS --keep-weekly $RETENTION_WEEKS --keep-monthly $RETENTION_MONTHS --keep-yearly $RETENTION_YEARS
EnvironmentFile=%h/.restic/restic-backup-home.conf

View File

@ -3,6 +3,7 @@ Description=Restic storage backup
After=restic-backup-home.service
[Service]
Type=oneshot
ExecStart=restic -r $RESTIC_REPOSITORY unlock; restic backup --verbose --tag systemd-storage.timer $BACKUP_EXCLUDES $BACKUP_PATHS --limit-upload=2048
ExecStartPre=-restic -r $RESTIC_REPOSITORY unlock
ExecStart=restic backup --verbose --tag systemd-storage.timer $BACKUP_EXCLUDES $BACKUP_PATHS --limit-upload=2048
ExecStartPost=restic forget --verbose --tag systemd-storage.timer --group-by "paths,tags" --keep-daily $RETENTION_DAYS --keep-weekly $RETENTION_WEEKS --keep-monthly $RETENTION_MONTHS --keep-yearly $RETENTION_YEARS
EnvironmentFile=%h/.restic/restic-backup-storage.conf