Thanks a lot. Unfortunately, recompiling currently is too much for my skills
Could you assist me, how to automatically load this script.
I generated in /etc/init.d/startbrowser.sh (with chmod +x permissions).
However, this is not automatically loaded on reboot. Where do I have to register this script?
Code:
#!/bin/bash
. /etc/init.d/functions
start() {
qndb -m bwmOpenBrowser &
}
stop() {
echo "nothing executed at stop" &
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
status)
;;
*)
echo "Usage: $0 {start|stop|status|restart}"
esac
exit 0
Executing manually works.