Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 26 Jan 2000 20:55:50 -0800 (PST)
From:      michaelc@netnation.com
To:        freebsd-questions@freebsd.org
Subject:   Set: not found
Message-ID:  <E12Dgxx-0004Gp-00@peace.netnation.com>

next in thread | raw e-mail | index | archive | help
Could someone be so kind as to shed some light on why I would receive a

Set: not found

error message during boot-up. It occurs while processing /etc/rc as far
as I can tell. It is displayed in the following code.

# for each valid dir in $local_startup, search for init scripts matching *.sh
if [ "X${local_startup}" != X"NO" ]; then
        echo -n 'Local package initialization:'
        for dir in ${local_startup}; do
                [ -d ${dir} ] && for script in ${dir}/*.sh; do
                        [ -x ${script} ] && \
                                (set -T ; trap 'exit 1' 2 ; ${script} start)
                done
        done
        echo .
fi

This code is from 3.4-Release. Any suggestions or pointers towards
applicable docs would be greatly appreciated.
 
-- 
---------------------------------------------------------
Michael Coulter
---------------------------------------------------------




To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?E12Dgxx-0004Gp-00>