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

auto_backup services missing in 2022.9.1 #71

Closed buffcode closed 2 years ago

buffcode commented 2 years ago

The problem

After installation of the integration on 2022.9.1 the auto_backup.* services are not listed and my automations also fail to call them.

I re-downloaded the integration via HACS and restarted the system without any success.

The systemlog is not showing any error, despite the usual We found a custom integration auto_backup which has not been tested by Home Assistant.

What version of Auto Backup has the issue?

1.3.0

What version of Home Assistant are you running?

2022.9.1

What type of installation are you running?

Home Assistant OS

Example YAML snippet

# automation
alias: "Backup: täglich"
trigger:
  - platform: time
    at: "02:30"
condition:
  - condition: time
    weekday:
      - tue
      - wed
      - thu
      - fri
      - sat
      - sun
action:
  - service: auto_backup.backup_full
    data:
      name: "DailyBackup: {{ now().strftime('%A, %B %-d, %Y') }}"
      keep_days: 7

----

# configuration.yml
logger:
    default: warning
    logs:
        custom_components.auto_backup: debug

Anything in the logs that might be useful for us?

No log output despite debug is enabled.

Additional information

No response

jcwillox commented 2 years ago

I haven't noticed this issue upgrading to 2022.9.1 personally, can you check if the integration still shows up on the "Settings -> Integrations" page? Auto Backup will only register its services when HA loads its config entry (i.e, when the integration has been configured) image

buffcode commented 2 years ago

Doh, silly me. On re-setup I forgot to add the integration and just installed via HACS.

It is working now, thanks :)