Freebsd rc troubleshooting

From wikinotes

Force Starting Broken InitScripts

Sometimes, you don't have time to troubleshoot why a particular command is not working. You can get around this in two ways:

rc.local method

# /etc/rc.local
/usr/local/etc/rc.d/${MY_SERVICE} start # bypass rc.d init and run

crontab method

su
crontab -u
# crontab

@reboot  /usr/local/etc/rc.d/<my_service> start
https://forums.freebsd.org/threads/31249/