Is local.rc broken on r8858-b53111a?

No longer able to start my script.

sleep 5
./root/net.sh
sleep 5
/etc/init.d/sqm restart
exit 0

Higher sleep doesn't help.

Script works fine starting manually.

Does it have a "shebang"?

#!/bin/sh

Is it marked as executable?

3 Likes

@Emtee
Actually there's two ways to fix this, first one is
Just remove the "." from "./root/net.sh"
or
ADD #!/bin/sh to /root/net.sh as a first line inside the script, the save the script.
sorry for the late response.