-
-
Save soner4/6d3dac773d5e334a20db23f83b55d32c to your computer and use it in GitHub Desktop.
Home Assistant blueprint for an automated weekly reboot of the entire Home Asistant OS host
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 | |
| description: Automated weekly reboot of the entire Home Asistant OS host by Chef de IT | |
| domain: automation | |
| input: | |
| reboot_day: | |
| name: Reboot Day of Week | |
| description: Pick the best day to reboot, e.g. Tuesday | |
| default: tue | |
| selector: | |
| select: | |
| options: | |
| - mon | |
| - tue | |
| - wed | |
| - thu | |
| - fri | |
| - sat | |
| - sun | |
| reboot_time: | |
| name: Reboot time of day | |
| description: Pick the least busy time for reboot, e.g. 4am | |
| default: "04:00:00" | |
| selector: | |
| time: | |
| condition: | |
| - condition: time | |
| before: "00:00:00" | |
| after: "00:00:00" | |
| weekday: | |
| - !input reboot_day | |
| 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