View Single Post
  #3   (View Single Post)  
Old 15th July 2014
Timmy66 Timmy66 is offline
Port Guard
 
Join Date: Sep 2008
Posts: 12
Default

Quote:
Originally Posted by jggimi View Post
You can use the installation/upgrade scripts' new autoinstall(8) feature, or you would need to customize the install script.

Autoinstall requires a DHCP server configured with the next-server option to provide the address of a webserver (which may be the same server) to provide the automatic prompt response files.
Any tips on what I need to change in install.sh or install.sub? I've added this to install.sub:

Code:
for _set in base etc comp man site; do
	[[ $MODE == upgrade && ( $_set == etc || $_set == xetc ) ]] && continue
	THESETS="$THESETS ${_set}${VERSION}.tgz"
	isin $_set site && continue
	DEFAULTSETS="$DEFAULTSETS ${_set}${VERSION}.tgz"
done
Reply With Quote