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
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.'