Remove CAPS.
[dragonfly.git] / nrelease / root / etc / defaults / pfi.conf
1 #######################################################################
2 # $Id: pfi.conf,v 1.7 2005/02/24 23:23:15 cpressey Exp $
3 # Defaults for pfi.conf.
4
5 # A space-separated list of what services to restart when we are done
6 # changing options.  The services are the base names of RCNG scripts
7 # (i.e. without the "/etc/rc.d/" prefix.)  Note that these must be
8 # given explicitly in the same order they would normally be started
9 # by rcorder during RCNG (e.g. "netif dhclient sshd"); they are not
10 # automatically ordered by their dependencies here.
11
12 pfi_rc_actions=""
13
14 # Determines which installer frontend to use.  Defaults to "curses";
15 # other legal options are "cgi" and "none".
16
17 pfi_frontend="curses"
18
19 # Determines which installer backend to use.  Typically this is
20 # "/usr/sbin/dfuibe_installer", the traditional C backend,
21 # but can be changed to start an alternate backend.
22
23 pfi_backend="/usr/sbin/dfuibe_installer"
24
25 # When using the curses frontend:
26 # Set the amount of time, in milliseconds, which must pass after
27 # the 'ESC' key is pressed, in order for it to be recognized
28 # as a plain 'ESC' keystroke, and not part of an escape code.
29
30 pfi_curses_escdelay="150"
31
32 # A password to set as the root password on the LiveCD, if any.
33
34 pfi_set_root_password=""
35
36 # Control corresponding sshd options.  To make sure sshd restarts with
37 # these options, add "sshd" to pfi_rc_actions.
38
39 pfi_sshd_permit_root_login="NO"
40 pfi_sshd_permit_empty_passwords="NO"
41
42 # An script to run before the installer.  It is assumed this script is
43 # located on the pfi media.  While it is run, the media's root directory
44 # is mounted on /mnt.
45
46 pfi_script=""
47
48 # A program to run before the installer.  It is assumed to reside on
49 # the LiveCD; /mnt is not mounted.
50
51 pfi_run=""
52
53 # What transport layer the DFUI in the installer should use.  Valid
54 # values are currently "npipe" and "tcp".
55
56 pfi_dfui_transport="tcp"
57
58 # User to automatically log in as, or "NONE".
59
60 pfi_autologin="NONE"
61
62 # Command to use to reboot.  "shutdown -h now" is typically used
63 # interactively, to give the user a chance to eject the disk, but
64 # "shutdown -r now" can be used for headless operation.
65
66 pfi_shutdown_command="shutdown -h now"
67
68 #######################################################################
69 # EXAMPLES
70 # To use one of these examples, extract it to a text file and remove the
71 # leading pound-signs.  Copy this text file to the file "/pfi.conf"
72 # on a floppy disk or USB pen drive (hereinafter referred to as "the pfi
73 # media") and have that media inserted or attached to the computer while
74 # you boot from the installer CD-ROM.  The installer will attempt to
75 # locate this file and, if found, will use the variables present within it
76 # to configure the installer boot process.
77
78 # This file has the same syntax as /etc/rc.conf, and it can contain any
79 # setting which is meaningful in /etc/rc.conf as well.  Any rc.conf
80 # setting which is given will only be obeyed, however, if the RCNG script
81 # to which that setting applies is named in pfi_rc_actions.
82
83 # EXAMPLE 1:
84 # Boot the installer headless, configure the network interface dc0,
85 # and start the CGI frontend.
86 #
87 # ifconfig_dc0="DHCP"
88 # pfi_rc_actions="netif dhclient"
89 # pfi_frontend="cgi"
90 # pfi_autologin="installer"
91 # pfi_shutdown_command="shutdown -r now"
92
93 # EXAMPLE 2:
94 # Boot the installer headless, configure the network interface rl0,
95 # and allow ssh'ing into the box as root with the password "sekrit".
96 #
97 # ifconfig_rl0="DHCP"
98 # pfi_sshd_permit_root_login="YES"
99 # pfi_set_root_password="sekrit"
100 # pfi_rc_actions="netif dhclient sshd"
101 # pfi_frontend="none"
102 # pfi_autologin="installer"
103 # pfi_shutdown_command="shutdown -r now"
104
105 # EXAMPLE 3:
106 # Boot the cd and setup a PXE/TFTP/DCHPD server environment
107 # so that clients can boot from the network and enter the installer
108 #
109 # Enable tftp and NFS services with pxeboot and a kernel available via
110 # tftp and the CD's root mount available via NFS.
111 #
112 # pfi_boot_tftp_server="YES"
113 # pfi_boot_nfs_server="YES"
114 # pfi_boot_pxeserver="YES"
115 # pfi_boot_ipserver="YES"
116 # pfi_option_subnet-mask="255.255.255.0"
117 # pfi_option_routers="10.0.250.1"
118 # pfi_filename="pxeboot"
119 # pfi_ddns-update-style="none"
120 # pfi_option_domain-name="domain.com"
121 # pfi_option_broadcast-address="10.0.250.255"
122 # pfi_option_domain-name-servers="192.168.64.3"
123 # pfi_server-name="DHCPServer"
124 # pfi_server-identifier="10.0.250.50"
125 # pfi_default-lease-time="7200"
126 # pfi_max-lease-time="7200"
127 # pfi_subnet="10.0.250.0 netmask 255.255.255.0"
128 # pfi_next-server="10.0.250.50"
129 # pfi_range="10.0.250.29 10.0.250.250"
130
131 # EXAMPLE 4:
132 # Use a custom backend.
133 #
134 # pfi_backend="/usr/pkg/sbin/my_custom_backend"