File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v1.0.1 (04.02.2025)
4+
5+ - minor fix
6+
37## v1.0.0 (04.02.2025)
48
59Initial release
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Just provide the rclone configuration file and the source and target bucket. Thi
2222You can easily execute the rclone sync command in the Docker container with this command:
2323
2424``` bash
25- docker exec -it s3sync-backup sync
25+ docker exec -it s3sync-backup backup
2626```
2727
2828### Hooks
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ for ((i=1; i<=MAX_BUCKETS; i++)); do
9191 fi
9292done
9393
94- hits=$( cat ${LOG_FILE } | grep " ERROR" | wc -l)
94+ hits=$( cat ${lastLogfile } | grep " ERROR" | wc -l)
9595if [[ $hits -eq 0 ]]; then
9696 statusCode=0 # success
9797else
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ export BACKUP_CRON=${BACKUP_CRON:="15 3 * * *"}
77export LOG_LEVEL=${LOG_LEVEL:= " INFO" }
88export LOG_TYPE=${LOG_TYPE:= " stdout" }
99export ALLOWED_DEVIATION=${ALLOWED_DEVIATION:= " 1" }
10- export USER_AGENT=${USER_AGENT:= " s3sync-backup-docker/1.0.0 " }
10+ export USER_AGENT=${USER_AGENT:= " s3sync-backup-docker/1.0.1 " }
1111
1212log () {
1313 local LEVEL=" $1 "
You can’t perform that action at this time.
0 commit comments