home · contact · privacy
Fix. master
authorChristian Heller <c.heller@plomlompom.de>
Fri, 4 Apr 2025 22:15:44 +0000 (00:15 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Fri, 4 Apr 2025 22:15:44 +0000 (00:15 +0200)
testing/home/desktop/.local/bin/borgplom

index e6603770e9acff6ed4a326d0856ca2b5186490e4..e25d97aa8cbc22a41e8e49c12d600189c7103648 100755 (executable)
@@ -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.'