ich bin neuling im Bereich von Debian. Ich habe einen vServer auf dem Debian Lenny installiert ist.
Ich habe dort erstmal so alles eingerichtet das ich dort einen Blog damit betreiben kann.
Nun möchte ich dort ein php-script in den autostart machen welches dauerhaft ausgeführt wird.
Ich habe dafür von einem Kumpel das Script bekommen, welches aber für Gentoo geschrieben ist.
Ich möchte es nun so haben das es bei mir läuft und wie ich es überhaupt in den Autostart bekomme.
Hier mal das Script:
Code: Alles auswählen
#!/sbin/bash
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
depend() {
after apache
}
start() {
ebegin "Starting php-sciptxx5"
start-stop-daemon -S -b -m -p /var/run/php-sciptxx5 -x /usr/bin/php /var/www/php-sciptxx5/svc.php nosvc
eend $?
}
stop() {
ebegin "Killing php-sciptxx5"
start-stop-daemon -K -p /var/run/php-sciptxx5
eend $?
}
restart() {
svc_stop
svc_start
}
Kann mir da jemand helfen?
Viele Grüße
Veolore