36 lines
		
	
	
	
		
			949 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			949 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
# $Wintelcom: src/freebsd/pxe/doc/post,v 1.1 2000/07/14 12:42:05 bright Exp $
 | 
						|
# $FreeBSD$
 | 
						|
 | 
						|
echo post-install
 | 
						|
 | 
						|
set PATH=/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/bin:/usr/bin/X11
 | 
						|
export PATH
 | 
						|
 | 
						|
# do timezone
 | 
						|
cp /usr/share/zoneinfo/America/Los_Angeles /etc/localtime
 | 
						|
 | 
						|
conf="/etc/rc.conf.local"
 | 
						|
 | 
						|
rm $conf
 | 
						|
 | 
						|
echo 'sendmail_enable="NO"' >> $conf
 | 
						|
echo 'dumpdev="/dev/ad0s1b"' >> $conf
 | 
						|
echo 'sshd_enable="YES"' >> $conf
 | 
						|
echo 'linux_enable="YES"' >> $conf
 | 
						|
 | 
						|
# set up IP address and hostname
 | 
						|
if=`ifconfig fxp1 inet | grep '[ 	]*inet' | sed 's/[ 	]*//'`
 | 
						|
echo "ifconfig_fxp1=\"${if}\"" >> $conf
 | 
						|
name=`echo $if | sed 's/[ 	][ 	]*/ /g' | cut -f2 -d" " | cut -f4 -d.`
 | 
						|
echo "hostname=\"suyy${name}\"" >> $conf
 | 
						|
 | 
						|
echo "network_interfaces=\"fxp0 fxp1 lo0\"" >> $conf
 | 
						|
 | 
						|
# set up gateway, parse netstat output
 | 
						|
gw=`netstat -rn | grep '^default' | sed 's/[ 	][ 	]*/ /g' | cut -f2 -d" "`
 | 
						|
echo "defaultrouter=\"${gw}\"" >> $conf
 | 
						|
 | 
						|
pwd_mkdb -p /etc/master.passwd
 | 
						|
exit 0
 |