summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Fankhauser hiddenalpha.ch2022-12-29 02:42:39 +0100
committerAndreas Fankhauser hiddenalpha.ch2022-12-29 02:42:39 +0100
commit2284b5d648b74ecc9c93aed446697338afc42538 (patch)
treedc5c376643d2747eb239198ee20d8fea322c6a09
parent8cdec7f70aeb7771301080740d1503d64d07b7b5 (diff)
downloadUnspecifiedGarbage-2284b5d648b74ecc9c93aed446697338afc42538.zip
UnspecifiedGarbage-2284b5d648b74ecc9c93aed446697338afc42538.tar.gz
(bkup-rsync) Cleanup
-rwxr-xr-xsrc/main/shell/BackupByRsync/backup.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/shell/BackupByRsync/backup.sh b/src/main/shell/BackupByRsync/backup.sh
index 9eeda0a..7dca2d2 100755
--- a/src/main/shell/BackupByRsync/backup.sh
+++ b/src/main/shell/BackupByRsync/backup.sh
@@ -13,7 +13,7 @@ set -o pipefail
readonly NOW_SHORT="$(date -u '+%Y%m%d-%H%M%S')"
readonly DIR_FROM="/home/${USER:?}/."
readonly DST_PREFIX="${DIR_FROM:?}"
-readonly DIR_TO="/mnt/d/ssd512g/bkup-rsync/tux-six"
+readonly DIR_TO="/mnt/x/ROOT_DIR/bkup-rsync/tux-six"
readonly BACKUP_PATH="${DIR_TO}/${NOW_SHORT}"
readonly LATEST_LINK="${DIR_TO}/latest"
@@ -118,7 +118,6 @@ run () {
--exclude="/tmp" \
--exclude="/virtualbox-*" \
--exclude="/vmshare" \
- --exclude="/projects/my-backup-evaluation/20220718-try-one-manual-backup" \
"${DIR_FROM:?}" \
"${BACKUP_PATH:?}/${DST_PREFIX}" \
;