I currently use the following automation for backups
alias: 'HA Backup (Tue, Fri, Sun)'
description: ''
trigger:
- platform: time
at: '03:00:00'
condition:
- condition: time
weekday:
- tue
- fri
- sun
action:
- service: hassio.snapshot_full
data:
name: 'Backup_{{ now().strftime(''%Y-%m-%d'') }}'
- service: recorder.purge
data:
keep_days: 2
mode: single
This works well, but ideally I would like to move my Music library on to this Pi, as it has an M.2 drive, but I would want to exclude the Media folder from the full backup. The backups are transferred over to my NAS automatically via Samba.
I know there is a partial backup, but I could not see a way to select everything other than a single folder. Ideally I don’t want to have to remember to edit the backup automation every time I add a new add on.
I wondered if I could create the lists using a template, but I have not go my head fully around those yet.