From owner-freebsd-questions Wed Jan 26 20:55:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from peace.netnation.com (peace.netnation.com [204.174.223.2]) by hub.freebsd.org (Postfix) with ESMTP id 1DC0E1541A for ; Wed, 26 Jan 2000 20:55:40 -0800 (PST) (envelope-from michaelc@michaelc.staff.netnation.com) Received: from [10.10.10.66] (helo=michaelc.staff.netnation.com) by peace.netnation.com with esmtp (Exim 3.13 #2) id 12Dgxx-0004Gp-00 for freebsd-questions@freebsd.org; Wed, 26 Jan 2000 20:55:34 -0800 Date: Wed, 26 Jan 2000 20:55:50 -0800 (PST) From: michaelc@netnation.com Subject: Set: not found To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Message-Id: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 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