Files
hassio-addons/duplicacy
2024-03-26 19:52:53 -04:00
..
2021-03-14 22:05:45 -04:00
2024-03-26 19:52:53 -04:00
2024-03-26 19:52:17 -04:00
2024-03-26 19:52:17 -04:00
2020-11-17 19:46:50 -05:00
2021-07-20 09:46:36 -04:00
2021-11-11 22:39:15 -05:00
2021-07-20 11:48:02 -04:00

home-assistant-duplicacy

This will backup the following directories to your backup host using the duplicacy backup program. Currently this only works with SFTP. This is to be used in conjunction with an automation to backup hassio and then start this addon. Below is an example of the automation.

Folders being backed up

filters:
  - 'i:addons/.*'
  - 'i:backup/.*'
  - 'i:config/.*'
  - 'i:share/.*'
  - 'i:ssl/.*'

Automation Example

alias: Backup HassIO
description: ''
trigger:
  - platform: time
    at: '23:00:00'
condition: []
action:
  - service: hassio.backup_full
    data:
      name: autobackup {{now().strftime('%Y-%m-%d %H:%M:%S')}}
  - delay: '00:05'
  - service: hassio.addon_start
    data:
      addon: 116a6749_duplicacy
mode: single