From owner-freebsd-stable Thu Nov 1 19:24: 4 2001 Delivered-To: freebsd-stable@freebsd.org Received: from imo-d09.mx.aol.com (imo-d09.mx.aol.com [205.188.157.41]) by hub.freebsd.org (Postfix) with ESMTP id 97F3037B405 for ; Thu, 1 Nov 2001 19:23:59 -0800 (PST) Received: from Hunt127588@aol.com by imo-d09.mx.aol.com (mail_out_v31_r1.8.) id n.5f.1d23fe2a (1332) for ; Thu, 1 Nov 2001 22:23:55 -0500 (EST) From: Hunt127588@aol.com Message-ID: <5f.1d23fe2a.29136bca@aol.com> Date: Thu, 1 Nov 2001 22:23:54 EST Subject: Update from 4.4-Stable from 4.3-Stable To: freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="part1_5f.1d23fe2a.29136bca_boundary" X-Mailer: AOL 6.0 for Windows US sub 10539 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --part1_5f.1d23fe2a.29136bca_boundary Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit I have upgraded to 4.4-Stable from 4.3-Stable. However, now my /usr/local/etc/rc.d/* scripts aren't started upon bootup. I have to manually start them to get these services started. I ran mergmaster and installed all files except /etc/rc.conf which I kept. I found the bad code and it is as follows (lines 678-717) in /etc/rc as of Nov 1st: ############################################### slist="${slist}${script_name_sep}${script}" done fi done script_save_sep="$IFS" IFS="${script_name_sep}" for script in ${slist}; do if [ -x "${script}" ]; then (set -T trap 'exit 1' 2 ${script} start) fi done IFS="${script_save_sep}" ############################################### Robert --part1_5f.1d23fe2a.29136bca_boundary Content-Type: text/html; charset="US-ASCII" Content-Transfer-Encoding: 7bit I have upgraded to 4.4-Stable from 4.3-Stable. However, now my /usr/local/etc/rc.d/* scripts aren't started upon bootup. I have to manually start them to get these services started. I ran mergmaster and installed all files except /etc/rc.conf which I kept. I found the bad code and it is as follows (lines 678-717) in /etc/rc as of Nov 1st:

###############################################
slist="${slist}${script_name_sep}${script}"
                       done
               fi
       done
       script_save_sep="$IFS"
       IFS="${script_name_sep}"
       for script in ${slist}; do
               if [ -x "${script}" ]; then
                       (set -T
                       trap 'exit 1' 2
                       ${script} start)
               fi
       done
       IFS="${script_save_sep}"
###############################################

Robert
--part1_5f.1d23fe2a.29136bca_boundary-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message