Delay add-on starting any time server reboots?

Not sure if this is even possible or where to start…

I want to delay an add-on from starting up for 10 mins anytime my HA server is restarted, starts back up after losing power, etc.

Is this even possible? If so, any suggestions or guides on how to create this via an automation?

Disable the automatic start in addon config.

Make an automation to start the addon whenever you want.

Example:

alias: Speedtest
description: ""
triggers:
  - trigger: homeassistant
    event: start
conditions: []
actions:
  - delay:
      hours: 0
      minutes: 10
      seconds: 0
      milliseconds: 0
  - data:
      addon: 6b87c29e_speedtest_addon
    action: hassio.addon_start
mode: single
1 Like

That worked! Thanks!

1 Like