1
x86 Systeme (PC) / WOL geht nicht seit Installation von mld 5.0
« on: September 07, 2015, 16:52:12 »
Hallo Claus,
vielen Dank für den schnellen Fix, WOL funktioniert jetzt wieder!
Überhaupt finde ich mld super, da man alles ruckzuck eingestellt hat, ohne ein Linux Profi sein zu müssen
und man schnell Hilfe bekommt, wenn etwas doch nicht klappt!!! Vielen Dank!
Zu dem Script habe ich tatsächlich Fragen, da ich mich damit nicht auskenne:
Ich habe jetzt die "example" Datei kopiert und in "copylog" umbenannt und der Inhalt sieht nun so aus:
- die Raute vor "stop" weg im "init" Abschnitt
Ist das so richtig?
Und die Datei bleibt im /etc/init.d/ Verzeichnis?
Danke und viele Grüße
anilu
vielen Dank für den schnellen Fix, WOL funktioniert jetzt wieder!
Überhaupt finde ich mld super, da man alles ruckzuck eingestellt hat, ohne ein Linux Profi sein zu müssen
und man schnell Hilfe bekommt, wenn etwas doch nicht klappt!!! Vielen Dank!
Zu dem Script habe ich tatsächlich Fragen, da ich mich damit nicht auskenne:
Ich habe jetzt die "example" Datei kopiert und in "copylog" umbenannt und der Inhalt sieht nun so aus:
Code: [Select]
#!/bin/sh
. /etc/init.d/rc.functions
NAME=${0##*/}
case "$1" in
start)
echo "Starting $NAME: "
#
# add here your start actions
#
check_status
;;
stop)
echo "Stopping $NAME: "
#
# add here your stop actions
cp /var/log/messages /mnt/data/other/log/messages.`date +%Y%m%d_%H%M`
cp /var/log/messages.0 /mnt/data/other/log/messages.0.`date +%Y%m%d_%H%M`
#
check_status
;;
restart)
$0 stop
$0 start
;;
init)
#start=1 # enable start section
stop=1 # enable stop section
#after="" # init scripts that must be started before this
#before="" # init scripts that should be started after this
;;
*)
echo "Usage: $0 {start | stop | restart}" >&2
exit 1
esac
- 2 x neue Zeilen im "stop" Abschnitt- die Raute vor "stop" weg im "init" Abschnitt
Ist das so richtig?
Und die Datei bleibt im /etc/init.d/ Verzeichnis?
Danke und viele Grüße
anilu