PERFORCE change 79941 for review
soc-andrew
soc-andrew at FreeBSD.org
Sun Jul 10 22:52:13 GMT 2005
http://perforce.freebsd.org/chv.cgi?CH=79941
Change 79941 by soc-andrew at 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
More information about the p4-projects
mailing list