1209513Simp# pc-autoinstall.conf example
2209513Simp# $FreeBSD$
3209513Simp#
4209513Simp# Usage: Modify these variables, and copy the file to 
5209513Simp# /boot/pc-autoinstall.conf on your PC-BSD installation medium
6209513Simp#
7209513Simp# The conf will then be read at bootup, and your automated
8209513Simp# install will take place
9209513Simp##################################################################
10209513Simp
11209513Simp# Where the pc-sysinstall main config is located
12209513Simp# Can be either a file on the booted CD / DVD / USB media, 
13209513Simp# or a remote file on http / ftp
14209513Simp#
15209513Simp# The value %%NIC_MAC%% is special, and will be substituted with 
16209513Simp# the macaddress of the enabled NIC from DHCP or manually set
17209513Simp# with 'nic_config:'
18209513Simp##################################################################
19209513Simp
20209513Simp# Examples:
21209513Simp# pc_config: ftp://192.168.0.2/cust-install.cfg
22209513Simp# pc_config: http://192.168.0.2/cust-install.cfg
23209513Simp# pc_config: http://192.168.0.2/%%NIC_MAC%%.cfg
24209513Simp# pc_config: /boot/cust-install.cfg
25209513Simp
26209513Simp# Set this to yes if we should confirm before doing an install
27209513Simp# This should normally be set to yes, otherwise booting the wrong
28209513Simp# disk will result in a system wipe
29209513Simp# confirm_install: no 
30209513Simpconfirm_install: yes
31209513Simp
32209513Simp# Set the command to run post-install, usually best to run shutdown
33209513Simp# but this can be replaced with any other command / script you wish
34209513Simp# to execute post-install
35209513Simp# shutdown_cmd: shutdown -p now
36209513Simp
37209513Simp# Options for the network setup, should the cfg need to be fetched
38209513Simp# from a remote location, only necessary when using ftp or http
39209513Simp##################################################################
40209513Simp
41209513Simp# Special option, will attempt dhcp on all found NICs
42209513Simp# until the file can be fetched, or we run out of interfaces
43209513Simp# nic_config: dhcp-all
44209513Simp
45209513Simp# Line to be passed to the "ifconfig" command to bring up an interface
46209513Simp# nic_config: em0 192.168.0.101 255.255.255.0
47209513Simp
48209513Simp# DNS server to use
49209513Simp# nic_dns: 192.168.0.1
50209513Simp
51209513Simp# Default router / gateway
52209513Simp# nic_gateway: 192.168.0.1
53