Execute specific bash script on Gentoo Linux startup

daemongentoostartup-scripts

I own a VDS running Gentoo Linux and I am curious about how to execute specific bash script at startup of my VDS.

I just want to startup apache2 at boot time and run two thin instances.

Best Answer

If your service already has an init script, you can add it to the default runlevel by running:

# rc-update add apache2 default

If not, depends on which services system you're using, add your scripts to the /etc/conf.d/local.start or /etc/local.d/baselayout1.start, something like this:

cd /path/to/your/app && thin start
Related Topic