Last active
December 8, 2023 22:52
-
-
Save soner4/1f42240c643a2e8d7d7a4c3c09615ac6 to your computer and use it in GitHub Desktop.
Reboot-HA-daily.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Reboot HA host daily | |
| description: Automated weekly reboot of the entire Home Asistant OS | |
| domain: automation | |
| input: | |
| reboot_time: | |
| name: Reboot time of day | |
| description: Pick the least busy time for reboot, e.g. 4am | |
| default: "04:30:00" | |
| selector: | |
| time: | |
| condition: | |
| - condition: time | |
| before: "00:00:00" | |
| after: "00:00:00" | |
| trigger: | |
| - platform: time | |
| at: !input reboot_time | |
| action: | |
| - service: hassio.host_reboot | |
| data: {} | |
| mode: single |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment