and starts a webserver:
/d/www/bin/apachectl start
I'd like this script to execute after the system is launched and mounting. I've tried dropping it into /etc/init.d/./rc.local, but it doesn't seem to execute for run properly.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Have a script that mounts an image:
mount /sdcard/ubuntunew.img /d
Starts mysqld:
mysqld_safe &
mounts a s3 bucket:
s3fs g3-demo /d/var
and starts a webserver:
/d/www/bin/apachectl start
I'd like this script to execute after the system is launched and mounting. I've tried dropping it into /etc/init.d/./rc.local, but it doesn't seem to execute for run properly.
Solved. Ended up using the init.sh in the root directory.