Szia, szerintem sincs még netkapcsolatod, amikor csatlakozni próbál. Én csinálnék egy initscriptet, ami meghívja a programot. Ott megadhatod, hogy mi kell az indulásához, pl. az sshd scriptjének eleje így néz ki (/etc/init.d/sshd ): ### BEGIN INIT INFO # Provides: sshd # Required-Start: $network $remote_fs # Required-Stop: $network $remote_fs # Default-Start: 3 5 # Default-Stop: 0 1 2 6 # Description: Start the sshd daemon ### END INIT INFO itt pl. az indulásához szükséges a $network (is). chkconfig <initscript> on és kész... persze biztos van egyszerűbb módszer is. Ervin ( pl. #! /bin/sh # # myip inditoscript # ### BEGIN INIT INFO # Provides: myip # Required-Start: $network # Required-Stop: $network # Default-Start: 3 5 # Default-Stop: 0 1 2 6 # Description: Start the myip service ### END INIT INFO . /etc/rc.status MYIP_BIN=/usr/bin/myip test -x $MYIP_BIN || exit 5 case "$1" in start) echo -n "Starting MyIP service" $MYIP_BIN rc_status -v ;; stop) echo -n "Lehet ezt stoppolni?" killall myip rc_status -v ;; esac vagy vmi ilyesmi :) ) --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-hu+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-hu+help@opensuse.org
participants (1)
-
Ervin Novak