Sometimes, when internet is failed and get back - bridge stop responding. Only system reboot can solve that. Can you add settings for scheduled reboot? where we can choose time or rebooting daily, weekly or monthly.
Would crontab be a better option for this sort of thing?
maybe, but will be great if you can do that.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
For anyone who comes across this issue and is looking to do this in the meantime. Simply do the following in Terminal:
sudo crontab -e
Choose: 1 for nano
Insert a line like: 0 3 * * * /sbin/shutdown -r
Where: min | hour | Day_of_Month | Month | Day_of_Week | command
This runs /sbin/shutdown -r nightly at _3:00 AM_. Asterisk out Day_of_Month, Month and Day_of_Week unless you only want to use those options. See this AskUbuntu article for further details.
Most helpful comment
@oznu I know this has been closed and marked stale, but I am thinking of users that are not familiar with using Terminal, and now that many are using the Official Homebridge Raspberry Pi Image it makes sense to revisit it as an option for use right out of the box.
For anyone who comes across this issue and is looking to do this in the meantime. Simply do the following in Terminal:
sudo crontab -eChoose:
1for nanoInsert a line like:
0 3 * * * /sbin/shutdown -rWhere:
min | hour | Day_of_Month | Month | Day_of_Week | commandThis runs
/sbin/shutdown -rnightly at _3:00 AM_. Asterisk out Day_of_Month, Month and Day_of_Week unless you only want to use those options. See this AskUbuntu article for further details.