Date: Sun, 10 Jul 2005 22:52:12 GMT From: soc-andrew <soc-andrew@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 79941 for review Message-ID: <200507102252.j6AMqCL8039667@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=79941 Change 79941 by soc-andrew@soc-andrew_serv on 2005/07/10 22:51:30 Add lines to rc.conf to stop unneeded thingd from being run and remove an i386ism Affected files ... .. //depot/projects/soc2005/bsdinstaller/src/release/Makefile#6 edit Differences ... ==== //depot/projects/soc2005/bsdinstaller/src/release/Makefile#6 (text+ko) ==== @@ -773,8 +773,15 @@ mkdir ${RD}/bsdinstaller/root/$$dir; \ done ) @echo "/dev/acd0 /usr cd9660 ro 0 0" > ${RD}/bsdinstaller/root/etc/fstab + @echo "sendmail_enable=\"NONE\"" > ${RD}/bsdinstaller/root/etc/rc.conf + @echo "cron_enable=\"NO\"" >> ${RD}/bsdinstaller/root/etc/rc.conf + @echo "devd_enable=\"NO\"" >> ${RD}/bsdinstaller/root/etc/rc.conf + @echo "syslogd_enable=\"NO\"" >> ${RD}/bsdinstaller/root/etc/rc.conf @cat ${.CURDIR}/bsdinstaller/gettytab >> ${RD}/bsdinstaller/root/etc/gettytab - cp ${.CURDIR}/bsdinstaller/ttys.i386 ${RD}/bsdinstaller/root/etc/ttys + ( if [ -f ${.CURDIR}/bsdinstaller/ttys.${TARGET_ARCH} ]; then \ + cp ${.CURDIR}/bsdinstaller/ttys.${TARGET_ARCH} \ + ${RD}/bsdinstaller/root/etc/ttys; \ + fi ) cp ${.CURDIR}/bsdinstaller/bsdinstaller_shell.sh ${RD}/bsdinstaller/root/ chmod u+x ${RD}/bsdinstaller/root/bsdinstaller_shell.sh cp ${RD}/bsdinstaller/root/etc/master.passwd ${RD}/bsdinstaller/master.passwd
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200507102252.j6AMqCL8039667>