Skip to content

Commit

Permalink
Merge pull request #80 from ikifar2012/dev
Browse files Browse the repository at this point in the history
2022.12.0
  • Loading branch information
ikifar2012 authored Dec 30, 2022
2 parents 11c6f85 + 17d9c1d commit 73b9927
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
9 changes: 9 additions & 0 deletions remote-backup/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 2022.12.0

- Bump Base Image to 13.0.0
- extend connection debug messages #77
- Logo #78
- Add null option #83

**Full Changelog**: https://github.com/ikifar2012/remote-backup-addon/compare/2022.9.4...2022.12.0

# 2022.9.4

- Message typo fix #73
Expand Down
10 changes: 5 additions & 5 deletions remote-backup/build.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
squash: false
build_from:
aarch64: ghcr.io/hassio-addons/base/aarch64:12.2.3
amd64: ghcr.io/hassio-addons/base/amd64:12.2.3
armhf: ghcr.io/hassio-addons/base/armhf:12.2.3
armv7: ghcr.io/hassio-addons/base/armv7:12.2.3
i386: ghcr.io/hassio-addons/base/i386:12.2.3
aarch64: ghcr.io/hassio-addons/base/aarch64:13.0.0
amd64: ghcr.io/hassio-addons/base/amd64:13.0.0
armhf: ghcr.io/hassio-addons/base/armhf:13.0.0
armv7: ghcr.io/hassio-addons/base/armv7:13.0.0
i386: ghcr.io/hassio-addons/base/i386:13.0.0
codenotary:
signer: [email protected]
base_image: [email protected]
4 changes: 2 additions & 2 deletions remote-backup/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Remote Backup
version: "2022.9.5"
version: "2022.12.0"
slug: remote_backup
description: Automatically create and transfer HA backups using SFTP (SCP), rsync, or rclone (experimental)
image: ikifar/remote-backup-{arch}
Expand Down Expand Up @@ -56,7 +56,7 @@ schema:
- match(^[A-Za-z0-9_\-\.\*\/\?\+\\ ]*$)?
backup_exclude_addons:
- str?
backup_keep_local: match(^(all|[+]?\d*)$)?
backup_keep_local: match(^(all|null|[+]?\d*)$)?
backup_password: str?
ssh_enabled: bool
ssh_remote_directory: str?
Expand Down
2 changes: 1 addition & 1 deletion remote-backup/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ function clone-to-remote {
}

function delete-local-backup {
if bashio::config.equals "backup_keep_local" "all"; then
if bashio::config.equals "backup_keep_local" "all" || bashio::config.equals "backup_keep_local" "null"; then
bashio::log.debug "Keep all backups."
return "${__BASHIO_EXIT_OK}"
fi
Expand Down

0 comments on commit 73b9927

Please sign in to comment.