home · contact · privacy
Fixes.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 2 Apr 2025 12:01:23 +0000 (14:01 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 2 Apr 2025 12:01:23 +0000 (14:01 +0200)
testing/home/desktop/.local/bin/borgplom

index ee9070d9a32691332fee7f71f71e5ce22919efa5..2b5631547a53b3de303588f3b8f30e2e2b991656 100755 (executable)
@@ -5,13 +5,10 @@ cd $(dirname "$0")
 . lib/get_passphrase
 . lib/path_tmp_timestamped
 
-PATH_BORG_CONF_SECURITY="${PATH_BORG_CONF}/security"
-
 BIN_NAME="$(basename $0)"
 CMD_HELP=help
 CMD_KEYS=keys
 CMD_ORGPULL=orgpull
-PREFIX_ABORTING='Aborting due to '
 
 print_usage() {
     echo "Usage: ${BIN_NAME} COMMAND"
@@ -24,19 +21,22 @@ print_usage() {
 
 # exits
 
+_PREFIX_ABORTING='Aborting due to '
+
 error_exit() {
-    echo "${PREFIX_ABORTING}$1"
+    echo "${_PREFIX_ABORTING}$1"
     exit 1
 }
 
 error_exit_with_usage() {
-    echo "${PREFIX_ABORTING}$1\n"
+    echo "${_PREFIX_ABORTING}$1\n"
     print_usage
     exit 1
 }
 
 # commands beyond print_usage
 
+PATH_BORG_CONF_SECURITY="${PATH_BORG_CONF}/security"
 _path_repo_location() { echo "${PATH_BORG_CONF_SECURITY}/${1}/location"; }
 
 cmd_keys() {