INITD=$@ PROC=$INITD apk_add $@ /etc/init.d/$INITD start sleep 1 pidof $PROC /etc/init.d/$INITD stop count=0;\ while pidof $PROC; do\ echo -n "." >/dev/tty;\ sleep 1;\ count=$((count + 1));\ if [ $$count -gt 5 ]; then\ killall -9 apcupsd;\ exit 1;\ fi;\ done apk_del $@