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

index f3695c3cde1475817567743304b95fa40339f340..43346a149309aa348067b93dacf1bab99a649aa8 100755 (executable)
@@ -11,6 +11,8 @@ CMD_HELP=help
 CMD_KEYS=keys
 CMD_ORGPULL=orgpull
 
+PATH_BORG_CONF_SECURITY="${PATH_BORG_CONF}/security"
+PATH_BORG_CONF_KEYS="${PATH_BORG_CONF}/keys"
 location_from_servername() { printf 'ssh://plom@%s/./borg' "$1"; }
 path_repo_location() { printf '%s' "${PATH_BORG_CONF_SECURITY}/${1}/location"; }
 
@@ -41,9 +43,6 @@ error_exit_with_usage() {
 
 # commands
 
-PATH_BORG_CONF_SECURITY="${PATH_BORG_CONF}/security"
-PATH_BORG_CONF_KEYS="${PATH_BORG_CONF}/keys"
-
 _check_args_beyond() {
     _N_MAX_ARGS="$1"
     _CMD="$2"
@@ -123,7 +122,7 @@ cmd_orgpull() {
     # determine server and repo
     _PATH_PIPE="$(path_tmp_timestamped 'pipe')"
     mkfifo "${_PATH_PIPE}"
-    ls -1 "${_PATH_BORG_CONF_SECURITY}/" > "${_PATH_PIPE}" &
+    ls -1 "${PATH_BORG_CONF_SECURITY}/" > "${_PATH_PIPE}" &
     while read _FILENAME; do
         _REPO="$(cat $(path_repo_location ${_FILENAME}))"
         _NAME_SERVER="$(echo ${_REPO} | cut -d'/' -f3)"