﻿id	summary	reporter	owner	description	status	resolution	keywords	cc
780	Support for /opt/etc/profile and exexution of /opt/etc/init.d scripts	frater	somebody	"Please support the /opt/etc/profile
So variables can be customized.


    if [ -d /opt/etc/init.d ] ; then
     for f in /opt/etc/init.d/S* ; do
       [ -x $f ] && $f start
     done
    fi

for shutdown:

    if [ -d /opt/etc/init.d ] ; then
     for f in /opt/etc/init.d/K* ; do
       [ -x $f ] && $f start
     done
    fi
"	new			
