added missing info
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Paolo Asperti 2021-09-14 15:52:11 +02:00
parent a812f70596
commit 014f1f5016
Signed by: paspo
GPG Key ID: 06D46905D19D5182
2 changed files with 27 additions and 1 deletions

View File

@ -1,4 +1,4 @@
## Auto Backup
# Auto Backup
This plugins takes a backup of your hassio instance based on the timing you specify in config. Just use standard cron format (min hour day month weekday).
You can specify how many backups you want to mantain (should be >= 1). Note that backups are deleted after a new one is taken, so if something goes wrong, you end up with no recent backup and the oldest valid ones.

26
config.json Normal file
View File

@ -0,0 +1,26 @@
{
"name": "Auto Backup",
"url": "https://git.asperti.com/paspo/hassio-addons",
"version": "0.2.0",
"slug": "auto-backup",
"description": "Take hassio backups with fixed timings and manage retention",
"startup": "application",
"boot": "auto",
"arch": [
"aarch64",
"amd64",
"armhf",
"i386"
],
"homeassistant": "2021.9",
"hassio_api": true,
"hassio_role": "backup",
"options": {
"cron": "15 3 * * *",
"num_backups": 10
},
"schema": {
"cron": "str",
"num_backups": "int"
}
}