10 lines
166 B
Bash
Executable file
10 lines
166 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# read configuration variables
|
|
source config.sh
|
|
|
|
export RESTIC_PASSWORD=${BACKUP_PASSWORD}
|
|
|
|
$RESTIC --repo $URI mount /tmp/backup
|
|
|
|
unset RESTIC_PASSWORD
|