diff --git a/remote-backup/CHANGELOG.md b/remote-backup/CHANGELOG.md index da053e0..d22bd31 100644 --- a/remote-backup/CHANGELOG.md +++ b/remote-backup/CHANGELOG.md @@ -1,3 +1,11 @@ +# 2024.4.0 + +- ⬆️ Update peter-evans/repository-dispatch action to v3 by @renovate in https://github.com/ikifar2012/remote-backup-addon/pull/130 +- ⬆️ Update Add-on base image to v15.0.7 by @renovate in https://github.com/ikifar2012/remote-backup-addon/pull/132 +- Fix rsync folders ([#134](https://github.com/ikifar2012/remote-backup-addon/issues/134)) + +**Full Changelog**: https://github.com/ikifar2012/remote-backup-addon/compare/2023.12.0...2024.4.0 + # 2023.12.0 - ⬆️ Bump base image to 15.0.1 from 13.1.3 diff --git a/remote-backup/config.yaml b/remote-backup/config.yaml index abbc685..6bf3e2d 100644 --- a/remote-backup/config.yaml +++ b/remote-backup/config.yaml @@ -1,5 +1,5 @@ name: Remote Backup -version: "2023.12.0" +version: "2024.4.0" slug: remote_backup description: Automatically create and transfer HA backups using SFTP (SCP), rsync, or rclone (experimental) image: ikifar/remote-backup-{arch} diff --git a/remote-backup/run.sh b/remote-backup/run.sh index 8f9bd54..d4c5935 100755 --- a/remote-backup/run.sh +++ b/remote-backup/run.sh @@ -223,7 +223,7 @@ function rsync-folders { return "${__BASHIO_EXIT_OK}" fi - local -r folders="/addons /all_addon_configs /backup /config /homeassistant_config /media /share /ssl" # put directories without trailing slash + local -r folders="/addons /addon_configs /backup /config /homeassistant /media /share /ssl" # put directories without trailing slash local -r rsync_url="${REMOTE_USER}@${REMOTE_HOST}:$(bashio::config 'rsync_rootfolder')" local flags="-a -r ${DEBUG_FLAG:-}"