jcwillox / hass-auto-backup

🗃️ Improved Backup Service for Home Assistant that can Automatically Remove Backups and Supports Generational Backup Schemes.
https://jcwillox.github.io/hass-auto-backup
MIT License
366 stars 27 forks source link

Backup is now stored locally and on NAS. #96

Closed XVBinh closed 1 year ago

XVBinh commented 1 year ago

Discussed in https://github.com/jcwillox/hass-auto-backup/discussions/95

Originally posted by **XVBinh** April 3, 2023 Hello, I want to store the backups only on the NAS. Now does it also store it locally. This is how the code looks like. ``` alias: auto backup description: "" trigger: - platform: time at: "02:30:00" condition: - condition: time weekday: - sun - fri - wed - mon action: - service: auto_backup.backup_full data: name: "DailyBackup: {{ now().strftime('%A, %B %-d, %Y') }}" keep_days: 7 download_path: /media/nasbinh/Back-ups/ mode: single ``` Now does he store it locally in the normal HA back-ups folder and on the NAS. Is there a way to not have the back-up locally?
XVBinh commented 1 year ago

.