Skip to content

Commit

Permalink
Merge pull request #91 from ikifar2012/dev
Browse files Browse the repository at this point in the history
2023.3.0
  • Loading branch information
ikifar2012 authored Mar 7, 2023
2 parents f79f0c6 + ca4d74b commit 70a7652
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions remote-backup/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 2023.3.0

- Bump base image from 13.0.0 to 13.1.3
- Fix quoting issue #89

**Full Changelog**: https://github.com/ikifar2012/remote-backup-addon/compare/2022.12.1...2023.3.0

# 2022.12.1

- Fix `scp: dest open` double quoting issue #86 addresses #84
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: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
aarch64: ghcr.io/hassio-addons/base/aarch64:13.1.3
amd64: ghcr.io/hassio-addons/base/amd64:13.1.3
armhf: ghcr.io/hassio-addons/base/armhf:13.1.3
armv7: ghcr.io/hassio-addons/base/armv7:13.1.3
i386: ghcr.io/hassio-addons/base/i386:13.1.3
codenotary:
signer: [email protected]
base_image: [email protected]
2 changes: 1 addition & 1 deletion remote-backup/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Remote Backup
version: "2022.12.1"
version: "2023.3.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
2 changes: 1 addition & 1 deletion remote-backup/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ function rclone-backups {
mkdir -p "${restore_name}"
bashio::log.info "Restoring backups to ${restore_name} using rclone"
(
rclone ${DEBUG_FLAG:-} copyto "${rclone_remote_host}:${remote_directory} /backup/${restore_name}/" || (
rclone ${DEBUG_FLAG:-} copyto "${rclone_remote_host}:${remote_directory}" "/backup/${restore_name}/" || (
bashio::log.error "Error restoring backups from ${rclone_remote_host}:${remote_directory}!"
return "${__BASHIO_EXIT_NOK}"
)
Expand Down

0 comments on commit 70a7652

Please sign in to comment.