]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.sbin/pc-sysinstall/examples/pc-autoinstall.conf
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / usr.sbin / pc-sysinstall / examples / pc-autoinstall.conf
1 # pc-autoinstall.conf example
2 # $FreeBSD$
3 #
4 # Usage: Modify these variables, and copy the file to 
5 # /boot/pc-autoinstall.conf on your PC-BSD installation medium
6 #
7 # The conf will then be read at bootup, and your automated
8 # install will take place
9 ##################################################################
10
11 # Where the pc-sysinstall main config is located
12 # Can be either a file on the booted CD / DVD / USB media, 
13 # or a remote file on http / ftp
14 #
15 # The value %%NIC_MAC%% is special, and will be substituted with 
16 # the macaddress of the enabled NIC from DHCP or manually set
17 # with 'nic_config:'
18 ##################################################################
19
20 # Examples:
21 # pc_config: ftp://192.168.0.2/cust-install.cfg
22 # pc_config: http://192.168.0.2/cust-install.cfg
23 # pc_config: http://192.168.0.2/%%NIC_MAC%%.cfg
24 # pc_config: /boot/cust-install.cfg
25
26 # Set this to yes if we should confirm before doing an install
27 # This should normally be set to yes, otherwise booting the wrong
28 # disk will result in a system wipe
29 # confirm_install: no 
30 confirm_install: yes
31
32 # Set the command to run post-install, usually best to run shutdown
33 # but this can be replaced with any other command / script you wish
34 # to execute post-install
35 # shutdown_cmd: shutdown -p now
36
37 # Options for the network setup, should the cfg need to be fetched
38 # from a remote location, only necessary when using ftp or http
39 ##################################################################
40
41 # Special option, will attempt dhcp on all found NICs
42 # until the file can be fetched, or we run out of interfaces
43 # nic_config: dhcp-all
44
45 # Line to be passed to the "ifconfig" command to bring up an interface
46 # nic_config: em0 192.168.0.101 255.255.255.0
47
48 # DNS server to use
49 # nic_dns: 192.168.0.1
50
51 # Default router / gateway
52 # nic_gateway: 192.168.0.1