Skip to content

Commit

Permalink
⬆️ Updated rsync addon to latest alpine
Browse files Browse the repository at this point in the history
  • Loading branch information
Poeschl committed Oct 13, 2023
1 parent 59633a5 commit 080d8e2
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
8 changes: 6 additions & 2 deletions rsync/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## 1.x.x - 2023-xx-xx
## 1.7.0 - 2023-10-13

* 🔨 Correct --archive argument (#380, #418)
* 🔨 Correct --archive argument (thanks @reedy | #418)
* 🔼 Updated to alpine `3.18`
* 🔼 Updated rsync to `3.2.7-r4`
* 🔼 Update coreutils to `9.3-r1`
* 🔼 Update openssh-client-default to `9.3_p2-r0`

## 1.6.0 - 2023-01-08

Expand Down
2 changes: 1 addition & 1 deletion rsync/DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The destination folder for rsync

### `folders` - `options` (optional)

Use your own options for rsync. This string is replacing the default one and get directly to rsync. The default is `-archive --recursive --compress --delete --prune-empty-dirs`.
Use your own options for rsync. This string is replacing the default one and get directly to rsync. The default is `--archive --recursive --compress --delete --prune-empty-dirs`.

### `remote_host`

Expand Down
6 changes: 3 additions & 3 deletions rsync/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ FROM $BUILD_FROM AS RUNNING

RUN apk update && \
apk add --no-cache \
'rsync=3.2.7-r0' \
'openssh-client-default=9.0_p1-r2' \
'coreutils=9.1-r0'
'rsync=3.2.7-r4' \
'openssh-client-default=9.3_p2-r0' \
'coreutils=9.3-r1'

COPY root /
RUN chmod a+x /run.sh
Expand Down
10 changes: 5 additions & 5 deletions rsync/build.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
build_from:
armhf: ghcr.io/home-assistant/armhf-base:3.16
armv7: ghcr.io/home-assistant/armv7-base:3.16
aarch64: ghcr.io/home-assistant/aarch64-base:3.16
amd64: ghcr.io/home-assistant/amd64-base:3.16
i386: ghcr.io/home-assistant/i386-base:3.16
armhf: ghcr.io/home-assistant/armhf-base:3.18
armv7: ghcr.io/home-assistant/armv7-base:3.18
aarch64: ghcr.io/home-assistant/aarch64-base:3.18
amd64: ghcr.io/home-assistant/amd64-base:3.18
i386: ghcr.io/home-assistant/i386-base:3.18
2 changes: 1 addition & 1 deletion rsync/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rsync
version: 1.6.0
version: 1.7.0
slug: rsync
description: Sync folders to a remote machine via ssh and rsync.
url: https://github.com/Poeschl/Hassio-Addons/tree/main/rsync
Expand Down

0 comments on commit 080d8e2

Please sign in to comment.