Hi,
I want to start an init script at boot after the network (specifically localhost) is up.
Using START=95 at the top of the init script does not work.
I have added sleep loop, but this seems kind of an ugly solution:
start_service() {
# wait for localhost
while ! ip -4 a s dev lo | grep '127.0.0.1' &> /dev/null; do
sleep 1
done