Re: Some services fail at boot but start normally manually
Reply #1 –
Hi!
I review `dhcpcd` service and (maybe) I finded the problem. Just add this line to end of `/etc/dinit.d/dhcpcd` service:
depends-on = root-rw
Why this happens?
When service use `logfile` You need to add a "depends" on root read-write filesystem. because Dinit can't start that service without creating that log file.
Note: this command help you to figure out "Why this service is failing?"
sudo dinitctl status <service-name>
Regards