hello, i have samba backup running every day automatically from configuration settings of the addon like below:
but I want to trigger a separate backup once a week with all the addons (as you see I skip mariadb and influxdb in regular backup). so I created this script (now i am only testing with same settings as regular, since it takes only 10 mins).
Notice I want only remote copy and changed the destination folder. But when I trigger the script, it follows the settings from addon’s configuration file. keeps the backup in local and saves to \HASS_BKP folder, whereas I wanted to save \HASS_BKP_Full folder.
Doest the addon honor overwriten settings in the script? it seems only the name is taken, nothing else!
The configuration options that directly affect the snapshot creation are overwritable for a single run:
exclude_addons
,exclude_folders
,backup_name
andbackup_password
. To overwrite any of these options, you have to use an extended syntax -command
has to betrigger
. See the following example:…
https://github.com/thomasmauerer/hassio-addons/blob/a0e6bd6e3321c84720fd53cbff57a13bb7895f7d/samba-backup/DOCS.md (bottom of the page)
thanks. i missed that completely