Compare commits

...

No commits in common. "v963" and "v961" have entirely different histories.
v963 ... v961

2 changed files with 16 additions and 34 deletions

View File

@ -1,17 +0,0 @@
description "rinetd Deamon"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on (runlevel [345] and (started ifup))
stop on runlevel [0126]
console none
pre-start script
if [ ! -f /etc/sysconfig/net/rinetd.conf ]; then
exit 10
fi
end script
expect daemon
exec /usr/sbin/rinetd -c /etc/sysconfig/net/rinetd.conf

View File

@ -19,7 +19,6 @@
# #
# #
if [ -d /var/install/sysvinit* ]; then
WDIR=`pwd` WDIR=`pwd`
cd etc/init.d cd etc/init.d
chmod 755 rinetd chmod 755 rinetd
@ -35,4 +34,4 @@ if [ -d /var/install/sysvinit* ]; then
cd .. cd ..
done done
cd $WDIR cd $WDIR
fi ~