> I've asked -ports before whether it is suitable to let ports startup scripts
> honor /etc/rc.conf{,.local} settings by sourcing /etc/defaults/rc.conf and
> then running a source_rc_confs (or whatever is appropriate).
my suggestion:
this is the 'modified' loop for the ${local_startup} in /etc/rc:
case ${local_startup} in
[Nn][Oo] | '')
;;
*)
echo -n 'Local package initialization:'
for dir in ${local_startup}; do
if [ -d "${dir}" ]; then
for script in ${dir}/*.sh; do
s=`basename ${script} .sh`
v=`eval echo '$'${s}_enable|dd conv=ucase`
if [ -x "${script}" -a ${v} = YES ]; then
(set -T
trap 'exit 1' 2
${script} start)
fi
done
fi
done
echo '.'
;;
esac
you just add: mysql_enable="YeS"
danny
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message