7 lines
226 B
Bash
7 lines
226 B
Bash
|
#!/usr/bin/env bash
|
||
|
# check if password was set
|
||
|
if [[ -z "${THESEUS_BORG_PASS}" ]]; then
|
||
|
echo 'THESEUS_BORG_PASS is not set, `export THESEUS_BORG_PASS=PASS`'
|
||
|
fi
|
||
|
REPO_URL = plex@homeserver.box:/srv/data/backup/borg/theseus
|