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