From b99686e35601a9dda73afcd79e0b47b8ea40c5e6 Mon Sep 17 00:00:00 2001 From: Matheson Steplock Date: Tue, 13 Sep 2022 16:12:43 -0400 Subject: [PATCH 1/4] Fix password check --- remote-backup/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote-backup/run.sh b/remote-backup/run.sh index 6e557b4..62742d0 100755 --- a/remote-backup/run.sh +++ b/remote-backup/run.sh @@ -99,7 +99,7 @@ function create-local-backup { local -r backup_exclude_addons=$(bashio::config "backup_exclude_addons") local -r base_folders="addons/local homeassistant media share ssl" local -r backup_password=$(bashio::config "backup_password") - if bashio::config.has_value "${backup_password}"; then + if bashio::config.has_value "backup_password"; then bashio::log.info "Creating local backup with password." local data="{\"name\":\"${BACKUP_NAME}\", \"password\": \"${backup_password}\"}" else From a7ac6e2713869e115940c77cb182404bb69bb2c8 Mon Sep 17 00:00:00 2001 From: Matheson Steplock Date: Tue, 13 Sep 2022 17:00:20 -0400 Subject: [PATCH 2/4] Bump version number --- remote-backup/config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote-backup/config.yaml b/remote-backup/config.yaml index 90dd0b7..5f8fe45 100644 --- a/remote-backup/config.yaml +++ b/remote-backup/config.yaml @@ -1,5 +1,5 @@ name: Remote Backup -version: "2022.9.1" +version: "2022.9.2" slug: remote_backup description: Automatically create and transfer HA backups using SFTP (SCP), rsync, or rclone (experimental) image: ikifar/remote-backup-{arch} From 12707a96cc917cae32a8ec9898cff861b1d58b34 Mon Sep 17 00:00:00 2001 From: Matheson Steplock Date: Tue, 13 Sep 2022 17:00:29 -0400 Subject: [PATCH 3/4] Update Changelog --- remote-backup/CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/remote-backup/CHANGELOG.md b/remote-backup/CHANGELOG.md index f84dbda..51e5c5c 100644 --- a/remote-backup/CHANGELOG.md +++ b/remote-backup/CHANGELOG.md @@ -1,3 +1,8 @@ +# 2022.9.2 + +- Backup password fix #68 + +**Full Changelog**: https://github.com/ikifar2012/remote-backup-addon/compare/2022.9.1...2022.9.2 # 2022.9.1 - Backup password fix #68 From 30e107fa1fafe3c5dbd9393b22c718e8343c1644 Mon Sep 17 00:00:00 2001 From: Matheson Steplock Date: Tue, 13 Sep 2022 17:26:56 -0400 Subject: [PATCH 4/4] Update Changelog --- remote-backup/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote-backup/CHANGELOG.md b/remote-backup/CHANGELOG.md index 51e5c5c..c906f2b 100644 --- a/remote-backup/CHANGELOG.md +++ b/remote-backup/CHANGELOG.md @@ -1,6 +1,6 @@ # 2022.9.2 -- Backup password fix #68 +- Fix password check #69 **Full Changelog**: https://github.com/ikifar2012/remote-backup-addon/compare/2022.9.1...2022.9.2 # 2022.9.1