Anpassungen an neue upstart, und vorbereitung damit upstart default wird

git-svn-id: svn://svn.compuextreme.de/Viitor/V962/Viitor_xinetd@5513 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2010-04-20 13:58:27 +00:00
parent 6ced3ea02b
commit 9ed4154ff0
3 changed files with 28 additions and 26 deletions

View File

@ -1,11 +0,0 @@
# rc - runlevel compatibility
#
# This task guesses what the "default runlevel" should be and starts the
# appropriate script.
start on started rpc
stop on stopping rpc
console logged
exec /usr/sbin/xinetd -filelog /var/log/xinetd.log -dontfork

11
etc/init/xinetd.conf Normal file
View File

@ -0,0 +1,11 @@
description "Startup xinet daemon after rpc"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on (runlevel [2345] and (started rpc))
stop on (runlevel [S016] and (stopping rpc))
console none
exec /usr/sbin/xinetd -filelog /var/log/xinetd.log -dontfork

View File

@ -30,6 +30,7 @@
#
#
if [ -d /var/install/sysvinit* ]; then
WDIR=`pwd`
cd etc/init.d
chmod 755 xinetd
@ -45,4 +46,5 @@ for i in 3 4 5; do
cd ..
done
cd $WDIR
fi
~