From: Christian Heller <c.heller@plomlompom.de>
Date: Fri, 4 Apr 2025 22:15:44 +0000 (+0200)
Subject: Fix.
X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/%7B%7Bprefix%7D%7D/static/tasks?a=commitdiff_plain;h=refs%2Fheads%2Fmaster;p=config

Fix.
---

diff --git a/testing/home/desktop/.local/bin/borgplom b/testing/home/desktop/.local/bin/borgplom
index e660377..e25d97a 100755
--- a/testing/home/desktop/.local/bin/borgplom
+++ b/testing/home/desktop/.local/bin/borgplom
@@ -25,7 +25,7 @@ error_exit_with_usage() { error_exit "${1}\n\n$(print_usage)"; }
 exit_ok() { echo "$@"; exit 0; }
 
 # commands
-USAGE_INDICES='backup_keys claim help info init keys orgpull'
+USAGE_INDICES='backup_keys claim help info init keys orgpull orgpush'
 
 _run_borg_with_passphrase() {
     while true; do
@@ -196,6 +196,18 @@ CMDFNC_orgpull() {
     borg extract --verbose "${_REPO}::${_ARCHIVE}"
 }
 
+USAGE_DESC_orgpush='push org directory to repos'
+CMDFNC_orgpush() {
+    expect_n_args 0 0 '' $@
+    _NAME_ARCHIVE=orgdir
+
+    ls -1 "${PATH_BORG_CONF_SECURITY}/" | while read _FILENAME; do
+        _REPO="$(cat $(path_repo_location ${_FILENAME}))"
+        _ARCHIVE="${_REPO}::${_NAME_ARCHIVE}-{utcnow:%Y-%m-%dT%H:%M}"
+        _run_borg_with_passphrase create --verbose "${_ARCHIVE}" ~/org
+    done
+}
+
 # parse args to execution
 if [ "$#" -lt 1 ]; then
     error_exit_with_usage 'missing command.'