I use the following crontab to regularly reboot my system
30 5 * * * root root reboot
but after these scheduled reboots, some services don't automatically start. The ones I have noticed already are OpenVPN and PostgreSQL, but I expect there to be more. Firstly, I noticed this after adding the scheduled reboot but as I recently upgraded from 15.10, it could be that something went wrong during the upgrade.
I hope someone can tell me, a) what I did wrong or/and b) what may have caused this.
---"what may have caused this?" : Services that don't start after a reboot either are not enabled to start automatically in the first place (systemctl list-unit-files --type=service) or they fail to start properly (check logs for errors andjournalctl) – HBruijn Sep 27 '16 at 18:09