8 lines
295 B
Bash
8 lines
295 B
Bash
#!/bin/bash
|
|
|
|
export RESTIC_PASSWORD_FILE="/etc/restic/pw.txt"
|
|
export RESTIC_REPOSITORY="sftp:lerentis@192.168.0.211:/srv/dev-disk-by-label-Data/Backup/Laptop/Huginn"
|
|
|
|
# What to backup, and what to not
|
|
BACKUP_PATHS="/home/lerentis/"
|
|
BACKUP_EXCLUDES="--exclude-file ${BACKUP_PATHS}.backup_exclude" |