Skip to content

Commit 3288105

Browse files
committed
v1.0.1
1 parent cbc6d53 commit 3288105

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v1.0.1 (04.02.2025)
4+
5+
- minor fix
6+
37
## v1.0.0 (04.02.2025)
48

59
Initial release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Just provide the rclone configuration file and the source and target bucket. Thi
2222
You 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

backup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ for ((i=1; i<=MAX_BUCKETS; i++)); do
9191
fi
9292
done
9393

94-
hits=$(cat ${LOG_FILE} | grep "ERROR" | wc -l)
94+
hits=$(cat ${lastLogfile} | grep "ERROR" | wc -l)
9595
if [[ $hits -eq 0 ]]; then
9696
statusCode=0 # success
9797
else

log.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export BACKUP_CRON=${BACKUP_CRON:="15 3 * * *"}
77
export LOG_LEVEL=${LOG_LEVEL:="INFO"}
88
export LOG_TYPE=${LOG_TYPE:="stdout"}
99
export 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

1212
log() {
1313
local LEVEL="$1"

0 commit comments

Comments
 (0)