Compare commits

...

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

2 changed files with 28 additions and 18 deletions

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

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