setup-cockpit/secrets.template

41 lines
568 B
Text

# secrets - is sourced by some commands - this is a template
# MISC.
SETUP_COCKPIT_USER='john'
SETUP_COCKPIT_EMAIL='john@doe.com'
GIT_EMAIL='john@doe.com'
SSH_REPO='user@ho.st'
# RSYNC BACKUP
RSYNC_BACKUP_SRC=/home
RSYNC_BACKUP_DEST=/path/to/backup/destination
export SETUP_COCKPIT_USER
export RSYNC_BACKUP_SRC
export RSYNC_BACKUP_DEST
# BORG BACKUP
BORG_REPO='user@ho.st'
BORG_PASSPHRASE='passphrase'
BORG_EXCLUDES="\
/path/to/exclude/*
/another/*/path/to/exclude/*
/yet/another/*/one/
"
export BORG_REPO
export BORG_PASSPHRASE
export BORG_EXCLUDES