mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-11-22 07:18:02 +01:00
6 lines
206 B
Bash
Executable file
6 lines
206 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
killall restic || true
|
|
source /mnt/data/bin/resticenv
|
|
/usr/bin/restic unlock
|
|
/usr/bin/restic backup --exclude-file /mnt/data/bin/restic-excludes /mnt/data/ /var/spool/cron/ $@
|