What's new
  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

init scripts are not being executed on startup

agneev

Regular Contributor
Hello all,

I'm running Voxel Firmware V9.2.5.2.37SF-HW on my RBK50.

A couple of days ago, I ran opkg update and opkg upgrade. Since then, I have noticed that scripts that are located in /etc/init.d/ do not start during boot anymore.

I have even created a simple script that starts these services and put it in /opt/scripts and it seems that this does not work either.

Any help is appreciated, thanks

- agneev
 
Hello all,

I'm running Voxel Firmware V9.2.5.2.37SF-HW on my RBK50.

A couple of days ago, I ran opkg update and opkg upgrade. Since then, I have noticed that scripts that are located in /etc/init.d/ do not start during boot anymore.

I have even created a simple script that starts these services and put it in /opt/scripts and it seems that this does not work either.

Any help is appreciated, thanks

- agneev
Hello :)

Do you mean in /opt/etc/init.d/?

1) Check that you have /tmp/mnt/sda1/autorun/scripts/post-mount.sh on you optware disk, with this inside:
Code:
# Start optware services if /opt is linked
if [ -x /opt/etc/init.d/rc.unslung ]; then

    # Start optware services
    /opt/etc/init.d/rc.unslung start
fi

2) Then check that subdirectories in /opt are linked : ls -l /opt, that should give you something like this (more or less):
Code:
root@HERMES:/tmp/mnt/sda1/autorun/scripts$ ls -l /opt
lrwxrwxrwx    1 root     root           25 Dec 23 12:03 bin -> /tmp/mnt/sda1/entware/bin
lrwxrwxrwx    1 root     root           20 Dec 23 12:03 bolemo -> /tmp/mnt/sda1/bolemo
lrwxrwxrwx    1 root     root           25 Dec 23 12:03 etc -> /tmp/mnt/sda1/entware/etc
-rw-r--r--    1 root     root          855 Jan  1  1970 filelist
lrwxrwxrwx    1 root     root           26 Dec 23 12:03 home -> /tmp/mnt/sda1/entware/home
drwxr-xr-x    2 root     root          224 Jan  1  1970 leafp2p
lrwxrwxrwx    1 root     root           25 Dec 23 12:03 lib -> /tmp/mnt/sda1/entware/lib
lrwxrwxrwx    1 root     root           29 Dec 23 12:03 libexec -> /tmp/mnt/sda1/entware/libexec
drwxr-xr-x    4 root     root          648 Jan  1  1970 rcagent
drwxr-xr-x    2 root     root          296 Jan  1  1970 remote
lrwxrwxrwx    1 root     root           26 Dec 23 12:03 root -> /tmp/mnt/sda1/entware/root
lrwxrwxrwx    1 root     root           26 Dec 23 12:03 sbin -> /tmp/mnt/sda1/entware/sbin
lrwxrwxrwx    1 root     root           29 Dec 23 12:03 scripts -> /tmp/mnt/sda1/entware/scripts
lrwxrwxrwx    1 root     root           27 Dec 23 12:03 share -> /tmp/mnt/sda1/entware/share
lrwxrwxrwx    1 root     root           25 Dec 23 12:03 tmp -> /tmp/mnt/sda1/entware/tmp
lrwxrwxrwx    1 root     root           25 Dec 23 12:03 usr -> /tmp/mnt/sda1/entware/usr
lrwxrwxrwx    1 root     root           25 Dec 23 12:03 var -> /tmp/mnt/sda1/entware/var
-rw-r--r--    1 root     root            9 Jan  1  1970 version
drwxr-xr-x    3 root     root          504 Jan  1  1970 xagent

3) Then check that you do have /opt/etc/init.d/rc.unslung
rc.unslug
is the script that runs everything executable inside /opt/etc/init.d/.
 
I'm trying to run another dnsmasq daemon. If I use a init.d script, it fails to work because the rc.func file checks for the process name.

I'm trying to instead, have a script run at startup that runs dnsmasq in the background. Where should I place the script so that it runs on startup?

Code:
root@orbi-gateway:~# ls -lh /opt/
lrwxrwxrwx    1 root     root          25 Dec  2 17:52 bin -> /tmp/mnt/sda1/entware/bin
lrwxrwxrwx    1 root     root          25 Dec  2 17:52 etc -> /tmp/mnt/sda1/entware/etc
lrwxrwxrwx    1 root     root          26 Dec  2 17:52 home -> /tmp/mnt/sda1/entware/home
lrwxrwxrwx    1 root     root          25 Dec  2 17:52 lib -> /tmp/mnt/sda1/entware/lib
lrwxrwxrwx    1 root     root          26 Dec  2 17:52 root -> /tmp/mnt/sda1/entware/root
lrwxrwxrwx    1 root     root          26 Dec  2 17:52 sbin -> /tmp/mnt/sda1/entware/sbin
drwxr-xr-x    2 root     root         100 Feb 23 13:20 scripts
lrwxrwxrwx    1 root     root          27 Dec  2 17:52 share -> /tmp/mnt/sda1/entware/share
lrwxrwxrwx    1 root     root          25 Dec  2 17:52 tmp -> /tmp/mnt/sda1/entware/tmp
lrwxrwxrwx    1 root     root          25 Dec  2 17:52 usr -> /tmp/mnt/sda1/entware/usr
lrwxrwxrwx    1 root     root          25 Dec  2 17:52 var -> /tmp/mnt/sda1/entware/var
 
I'm trying to run another dnsmasq daemon. If I use a init.d script, it fails to work because the rc.func file checks for the process name.

I'm trying to instead, have a script run at startup that runs dnsmasq in the background. Where should I place the script so that it runs on startup?

Code:
root@orbi-gateway:~# ls -lh /opt/
lrwxrwxrwx    1 root     root          25 Dec  2 17:52 bin -> /tmp/mnt/sda1/entware/bin
lrwxrwxrwx    1 root     root          25 Dec  2 17:52 etc -> /tmp/mnt/sda1/entware/etc
lrwxrwxrwx    1 root     root          26 Dec  2 17:52 home -> /tmp/mnt/sda1/entware/home
lrwxrwxrwx    1 root     root          25 Dec  2 17:52 lib -> /tmp/mnt/sda1/entware/lib
lrwxrwxrwx    1 root     root          26 Dec  2 17:52 root -> /tmp/mnt/sda1/entware/root
lrwxrwxrwx    1 root     root          26 Dec  2 17:52 sbin -> /tmp/mnt/sda1/entware/sbin
drwxr-xr-x    2 root     root         100 Feb 23 13:20 scripts
lrwxrwxrwx    1 root     root          27 Dec  2 17:52 share -> /tmp/mnt/sda1/entware/share
lrwxrwxrwx    1 root     root          25 Dec  2 17:52 tmp -> /tmp/mnt/sda1/entware/tmp
lrwxrwxrwx    1 root     root          25 Dec  2 17:52 usr -> /tmp/mnt/sda1/entware/usr
lrwxrwxrwx    1 root     root          25 Dec  2 17:52 var -> /tmp/mnt/sda1/entware/var

Here is one way :

Put your script for example at the root of the optware disk (or anywhere you want).

Then add a line at the end of /tmp/mnt/sda1/autorun/scripts/post-mount.sh to run your script (with the full path to your script):
Bash:
# Start custom script
[ -x /tmp/mnt/sda1/myscript.sh ] && /tmp/mnt/sda1/myscript.sh

Then, each time you reboot or plug the optware disk, it will launch you script.
 

Latest threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!

Staff online

Back
Top