Hi
I’ve navigated with YaST in the commandline-mode to “System Services (Runlevel): Services”. I changed the entry from " xdleserver xNo x" to “xYes”. The goal is, that the dleserver would start at the system start. Everything looked fine:
I was able to open the sub-menu with “CTRL + ALT + 3” and then this dialog appeared: “[Enable][Disable][Help][Cancel][ OK ]” I’ve pushed “ALT + E”. After that, this message appeared:
/etc/init.d/dleserver start returned 0 (success):
[OK]
I’ve confirmed this message as well. After that, the entry looked like that:
xdleserver xNo* x
I was again in the previous menu after pushing “OK” (System Services (Runlevel)). I hit the menu again to check the entry. It was again on “No”:
xdleserver xNo x
Do you know why I can’t change that? I thought it worked cause it said “returned 0 (success)”
FYI: The script in /etc/init.d looks like that:
[CODE]#!/bin/sh
chkconfig: 5 66 34
description: dleserver_vftodo
DLE=/opt/dle
cd /opt/dle/scripts
case “$1” in
start)
echo -n “Starting dle Server …”
su dle -c “/usr/bin/nohup /opt/dle/scripts/startserver.sh 1>>/opt/dle/log/server_out.log 2>&1 &”
;;
stop)
echo -n “Shutting down dleServer …”
su dle -c “/usr/bin/nohup /opt/dle/scripts/stopserver.sh 1>>/opt/dle/log/server_out.log 2>&1 &”
;;
status)
status dleserver_vftodo
;;
*)
echo “Usage: $0 {start|stop|status}”
exit 1
;;
esac[/CODE]