Hi,
good news. Finally we (Thorsten and me) implemented a nice method to name all
init scripts in /etc/init.d just with the name of the daemon or script name,
without the annoying leading "SXY" prefix. This was a suggestion from Lars,
our usability chief developer

. It is long time ago he suggested it and finally I got
some time to explain Thorsten what we need, to get a little bit more general
Linux distribution compatibility. The implementation is very short and clean:
grep '^#FWINIT ' /etc/init.d/* | \
sort -nk2 | \
while read line; do
/bin/sh ${line%%:*} autostart 2>&1
done
It is nice to work with experienced unix people, who know their tools.
New packages should use #FWINIT XX in the init script to define the startup order.