Skip to main content

Blueprints and Automation's

Automation's

Backup at sunrise

alias: Automatic Remote Backup
description: 'Upon sunrise, create a remote backup'
trigger:
  - platform: sun
    event: sunrise
    offset: '0'
condition: []
action:
  - service: hassio.addon_start
    data:
      addon: 3490a758_remote_backup
mode: single

Example by @Lockszmith-GH

Create persistent notification if backup fails

alias: Backup check
description: This automation creates an persistent notification in case the backup fails.
trigger:
  - platform: event
    event_type: remote_backup_status
    event_data:
      result: error
action:
  - service: persistent_notification.create
    data:
      message: Backup failed
mode: single