diff --git a/nextcloud_backup/.README.ejs b/nextcloud_backup/.README.ejs index 2e0aa02..3d1c845 100644 --- a/nextcloud_backup/.README.ejs +++ b/nextcloud_backup/.README.ejs @@ -14,6 +14,7 @@ Easily backup your Home Assistant snapshots to Nextcloud. - __Selective Backup__ : You can specify witch folder and add-on you want to backup. - __Password protected Backup__ : this add-on can use the Home Assistant snapshot encryption. - __Auto Clean__ : You can specify the maximum number of local snapshots and (__ONLY__) auto backed-up snapshots. +- __Auto Stop__ : This addon can stop addons before backup and restart them after backup - __Restore__ : Upload backed-up snapshot to Home assistant. - __Web UI__ : All the configuration is based on an easy-to-use web interface, no yaml needed. diff --git a/nextcloud_backup/README.md b/nextcloud_backup/README.md index dfafea5..5e22ecd 100644 --- a/nextcloud_backup/README.md +++ b/nextcloud_backup/README.md @@ -15,6 +15,7 @@ Easily backup your Home Assistant snapshots to Nextcloud. - __Selective Backup__ : You can specify witch folder and add-on you want to backup. - __Password protected Backup__ : this add-on can use the Home Assistant snapshot encryption. - __Auto Clean__ : You can specify the maximum number of local snapshots and (__ONLY__) auto backed-up snapshots. +- __Auto Stop__ : This addon can stop addons before backup and restart them after backup - __Restore__ : Upload backed-up snapshot to Home assistant. - __Web UI__ : All the configuration is based on an easy-to-use web interface, no yaml needed. diff --git a/nextcloud_backup/config.json b/nextcloud_backup/config.json index e08d1df..82e8973 100644 --- a/nextcloud_backup/config.json +++ b/nextcloud_backup/config.json @@ -27,15 +27,12 @@ "log_level": "info" }, "schema": { - "log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?", - "leave_front_door_open": "bool?" + "log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?" }, "ports": { - "3000/tcp": null, - "9226/tcp": null + "3000/tcp": null }, "ports_description": { - "3000/tcp": "Web interface (Not required for Hass.io Ingress)", - "9226/tcp": "NodeJS Debuger" + "3000/tcp": "Web interface (Not required for Hass.io Ingress)" } } diff --git a/nextcloud_backup/rootfs/opt/nextcloud_backup/package.json b/nextcloud_backup/rootfs/opt/nextcloud_backup/package.json index 6a5f709..3364122 100644 --- a/nextcloud_backup/rootfs/opt/nextcloud_backup/package.json +++ b/nextcloud_backup/rootfs/opt/nextcloud_backup/package.json @@ -3,7 +3,7 @@ "version": "0.8.0", "private": true, "scripts": { - "start": "node --inspect=0.0.0.0:9226 ./bin/www " + "start": "node ./bin/www " }, "dependencies": { "@fortawesome/fontawesome-free": "^5.15.1",