11 lines
161 B
Bash
11 lines
161 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# read configuration variables
|
||
|
source config.sh
|
||
|
|
||
|
export RESTIC_PASSWORD=${BACKUP_PASSWORD}
|
||
|
|
||
|
$RESTIC --repo $URI $QUIET prune
|
||
|
|
||
|
unset RESTIC_PASSWORD
|