aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rw-r--r--etc/rbup/rbup.conf13
1 files changed, 10 insertions, 3 deletions
diff --git a/etc/rbup/rbup.conf b/etc/rbup/rbup.conf
index 34d3615..157c9f9 100644
--- a/etc/rbup/rbup.conf
+++ b/etc/rbup/rbup.conf
@@ -5,14 +5,20 @@
# flags given to rbup.sh
RBUP_NOW="$( date "+%Y-%m-%dT%H%M%S" )"
RBUP_SYNC_CMD=/bin/rsync
-RBUP_SYNC_OPTS="-rlptgODwhatever"
+RBUP_SYNC_OPTS="-rlptgoDEA"
RBUP_SYNC_OPT_VERBOSE="-v"
-RBUP_SYNC_OPT_APPLY="-n"
-RBUP_DEST_MOUNT_CMD="mount -v jonathan:/volume1/sword /mnt/jonathan/"
+RBUP_SYNC_OPT_NOT_VERBOSE=""
+RBUP_SYNC_OPT_APPLY=""
+RBUP_SYNC_OPT_NOT_APPLY="-n"
+RBUP_DEST_MOUNT_CMD="mount jonathan:/volume1/sword /mnt/jonathan/"
RBUP_DEST_UMOUNT_CMD="umount -l /mnt/jonathan/"
RBUP_DEST=/mnt/jonathan
RBUP_LOG_DIR=/var/log/rbup
+# RBUP_ENABLED value determines if the actual operation occurs.
+#if true, will use the SYNC_OPT_NOT_APPLY option
+RBUP_ENABLED=yes
+
RBUP_VERBOSE=yes # can be overridden by the -v/-q flag or by the job options
# JOB SPECIFIC VALUES
@@ -22,3 +28,4 @@ RBUP_CHECKSUM_COUNT=1
RBUP_CHECKSUM_1_FILE="/var/storage1/shares/public/Age Of Empires/Installing-AoFE-on-Linux 2016-01-29.odt"
RBUP_CHECKSUM_1_SHA256SUM=407ad21ce6b6ddb9a7f6a907134155431306a6b0450fedc3981d65311ff91c06
RBUP_LOG_FILE=${RBUP_LOG_DIR}/${RBUP_JOB_NAME}.${RBUP_NOW}.log
+#RBUP_LOG_FILE=/dev/null
bgstack15