This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added possibilty to contain backup in a password-protected zip.
- Loading branch information
Nicolai Bjerre Pedersen
committed
Mar 8, 2018
1 parent
186d061
commit cf9bda9
Showing
5 changed files
with
39 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,22 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). | ||
The format is based on [Keep a Changelog][keep-a-changelog] this project adheres to [Semantic Versioning][semantic-versioning]. | ||
|
||
## [1.0.0] - 2018-03-05 | ||
## [v0.2.0] (2018-03-07) | ||
|
||
[Full Changelog][v0.1.0-v0.2.0] | ||
|
||
### Added | ||
|
||
- Possibilty to contain the backup in a password protected zip file. | ||
|
||
## [v0.1.0] (2018-03-06) | ||
|
||
### Added | ||
|
||
- Initial release | ||
|
||
[keep-a-changelog]: http://keepachangelog.com/en/1.0.0/ | ||
[semantic-versioning]: http://semver.org/spec/v2.0.0.html | ||
[v0.1.0-v0.2.0]: https://github.com/mr-bjerre/hassio-remote-backup/compare/v0.1.0...v0.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
{ | ||
"name": "Remote Backup", | ||
"version": "0.1.0", | ||
"version": "dev", | ||
"slug": "remote_backup", | ||
"description": "Exploit snapshots and SCP to create remote backups to specified server", | ||
"url": "https://github.com/mr-bjerre/hassio-remote-backup", | ||
"startup": "once", | ||
"boot": "manual", | ||
"hassio_api": true, | ||
"map": ["backup:rw"], | ||
"image": "fixated/remote-backup-{arch}", | ||
"options": { | ||
"ssh_host": "", | ||
"ssh_port": 22, | ||
"ssh_user": "", | ||
"ssh_key": [], | ||
"remote_directory": "" | ||
"remote_directory": "", | ||
"zip_password": "" | ||
}, | ||
"schema": { | ||
"ssh_host": "str", | ||
"ssh_port": "int", | ||
"ssh_user": "str", | ||
"ssh_key": ["str"], | ||
"remote_directory": "str" | ||
"remote_directory": "str", | ||
"zip_password": "str" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters