home · contact · privacy
Fix. master
authorChristian Heller <c.heller@plomlompom.de>
Thu, 3 Apr 2025 08:55:31 +0000 (10:55 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Thu, 3 Apr 2025 08:55:31 +0000 (10:55 +0200)
testing/home/desktop/.local/bin/borgplom
testing/scripts/_setup_secrets_user.sh

index aa7b6ac4b2bfd8047eef8f3211002c1be22330bf..6d30f4133b84660af286f1803c4f393a819dbeb9 100755 (executable)
@@ -1,6 +1,7 @@
 #!/bin/sh
 set -e
 cd $(dirname "$0")
+. lib/abort
 . lib/constants_borg  # PATH_BORG_CONF
 . lib/get_passphrase
 . lib/path_tmp_timestamped
@@ -42,14 +43,8 @@ _print_usage() {
 }
 
 # 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'
@@ -58,12 +53,12 @@ _check_args_n() {
     _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
 }
 
index 990f330cb32bdf322c48c247b56c829686eb80e5..a280dca7abbe3e7af157fd9409db7271c4f24561 100644 (file)
@@ -50,7 +50,7 @@ cd "${PATH_REPOS}"
 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}"