#!/bin/sh
set -e
cd $(dirname "$0")
+. lib/abort
. lib/constants_borg # PATH_BORG_CONF
. lib/get_passphrase
. lib/path_tmp_timestamped
}
# exits
-error_exit() {
- echo "Aborting due to $1"
- exit 1
-}
-
-error_exit_with_usage() {
- error_exit "${1}\n\n$(_print_usage)"
-}
+error_exit() { abort "Aborting due to $1"; }
+error_exit_with_usage() { error_exit "${1}\n\n$(_print_usage)"; }
# commands
COMMANDS='backup_keys claim help keys orgpull'
_N_MAX_ARGS="$1"
shift 1
if [ "$#" -lt "${_N_MAX_ARGS}" ]; then
- error_exit "missing arguments ($# instead of ${_N_MAX_ARGS})."
+ error_exit_with_usage "missing arguments ($# instead of ${_N_MAX_ARGS})."
fi
shift "${_N_MAX_ARGS}"
if [ "$#" -gt 0 ]; then
_MSG="unexpected arguments beyond expected number: $@"
- error_exit "${_MSG}"
+ error_exit_with_usage "${_MSG}"
fi
}
ssh ${REPOS_SITE_LOGIN} "cd ${REMOTE_PATH_REPOS} && ls -1" | while read REPO_NAME; do
git clone --recurse "${REPOS_SITE_LOGIN}:${REMOTE_PATH_REPOS}/${REPO_NAME}"
done
-cd -
+cd - > /dev/null
echo "\nSetting up borg and pull in ~/org"
cd "${PATH_SECRETS_BORGKEYS}"