Incorporate changes for version 2.0

This commit is contained in:
2026-02-25 17:26:01 -05:00
parent 5fc3a3e901
commit a3f9fe3bdb
12 changed files with 1736 additions and 1274 deletions

17
dist/usr/local/bin/run_ribs_backups vendored Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
# run_ribs_backups
#
# This script is intended to facilitate running ribs backups using cron.
# To run system configs, either create a link to this script in one or
# more of the /etc/cron.* directories or add a line calling this script
# to the /etc/crontab file. That will run all enabled system configs.
# To run user configs, the user should add a line calling this script
# to their personal crontab. That will run all enabled user configs for
# that user.
log_path="/var/log/ribs"
log_fn="ribs_$(date +%Y%m%d%H%M%S).log"
/usr/local/bin/ribs > "$log_path"/"$log_fn" 2>&1