Compare commits

...

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

2 changed files with 18 additions and 28 deletions

View File

@ -1,11 +0,0 @@
description "midentd startup"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on (runlevel [2345] and (started dbus))
stop on runlevel [016]
console output
exec /usr/sbin/midentd -u nobody

View File

@ -29,20 +29,21 @@ plate,v $
# #
# #
if [ -f /var/install/sysvinit* ]; then
WDIR=`pwd`
cd etc/init.d WDIR=`pwd`
chmod 755 midentd cd etc/init.d
mkdir rc{0,1,2,3,4,5,6}.d chmod 755 midentd
for i in 0 1 6; do mkdir rc{0,1,2,3,4,5,6}.d
cd rc$i.d for i in 0 1 6; do
ln -s ../midentd K74midentd cd rc$i.d
cd .. ln -s ../midentd K74midentd
done cd ..
for i in 2 3 4 5; do done
cd rc$i.d for i in 2 3 4 5; do
ln -s ../midentd S14midentd cd rc$i.d
cd .. ln -s ../midentd S14midentd
done cd ..
cd $WDIR done
fi cd $WDIR
~