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

index 2b5631547a53b3de303588f3b8f30e2e2b991656..bb17a6b52b9f55e8ade3f404394383464f9c8fd8 100755 (executable)
@@ -37,24 +37,24 @@ error_exit_with_usage() {
 # commands beyond print_usage
 
 PATH_BORG_CONF_SECURITY="${PATH_BORG_CONF}/security"
-_path_repo_location() { echo "${PATH_BORG_CONF_SECURITY}/${1}/location"; }
+_path_repo_location() { printf '%s' "${PATH_BORG_CONF_SECURITY}/${1}/location"; }
 
 cmd_keys() {
-    _PATH_CONF_KEYS="${PATH_BORG_CONF}/keys"
+    _PATH_BORG_CONF_KEYS="${PATH_BORG_CONF}/keys"
     _exit_ok() {
        echo "(none, since directory ${1}."
        exit 0
     }
     echo "Known keys, as per ${_PATH_BORG_CONF_KEYS}:"
-    if [ ! -d "${_PATH_CONF_KEYS}" ]; then
-       exit_ok "non-existant"
+    if [ ! -d "${_PATH_BORG_CONF_KEYS}" ]; then
+       _exit_ok "non-existant"
     fi
-    _KEYFILES="$(ls -1 ${_PATH_CONF_KEYS})"
+    _KEYFILES="$(ls -1 ${_PATH_BORG_CONF_KEYS})"
     if [ -z "${_KEYFILES}" ]; then
-       exit_ok "empty"
+       _exit_ok "empty"
     fi
     echo "${_KEYFILES}" | while read _FILENAME; do
-        _KEY_ID=$(head -1 "${_PATH_CONF_KEYS}/${_FILENAME}" | cut -d' ' -f2)
+        _KEY_ID=$(head -1 "${_PATH_BORG_CONF_KEYS}/${_FILENAME}" | cut -d' ' -f2)
         printf "${KEY_ID} ${_FILENAME} "
        _PATH_LOC="$(cat $(_path_repo_location ${_KEY_ID}))"
         if [ -f "${_PATH_LOC}" ]; then