Merge from vendor branch CVS:
[dragonfly.git] / nrelease / installer / etc / defaults / pfi.conf
1 #######################################################################
2 # $Id: pfi.conf,v 1.2 2004/07/10 21:52:27 cpressey Exp $
3 # $DragonFly: src/nrelease/installer/etc/defaults/pfi.conf,v 1.2 2004/07/11 01:55:28 cpressey Exp $
4 # Defaults for pfi.conf.
5
6 # A space-seperated list of what services to restart when we are done
7 # changing options.  The services are the base names of RCNG scripts
8 # (i.e. without the "/etc/rc.d/" prefix.)  Note that these must be
9 # given explicitly in the same order they would normally be started
10 # by rcorder during RCNG (e.g. "netif dhclient sshd"); they are not
11 # automatically ordered by their dependencies here.
12
13 pfi_rc_actions=""
14
15 # Determines which installer frontend to use.  Defaults to "curses";
16 # other legal options are "cgi" and "none".
17
18 pfi_frontend="curses"
19
20 # A password to set as the root password on the LiveCD, if any.
21
22 pfi_set_root_password=""
23
24 # Control corresponding sshd options.  To make sure sshd restarts with
25 # these options, add "sshd" to pfi_rc_actions.
26
27 pfi_sshd_permit_root_login="NO"
28 pfi_sshd_permit_empty_passwords="NO"
29
30 # An script to run before the installer.  It is assumed this script is
31 # located on the pfi media.  While it is run, the media's root directory
32 # is mounted on /mnt.
33
34 pfi_script=""
35
36 # A program to run before the installer.  It is assumed to reside on
37 # the LiveCD; /mnt is not mounted.
38
39 pfi_run=""
40
41 # What transport layer the DFUI in the installer should use.  Valid
42 # values are currently "caps", "npipe", and "tcp".
43
44 pfi_dfui_transport="tcp"
45
46 #######################################################################
47 # EXAMPLES
48 # To use one of these examples, extract it to a text file and remove the
49 # leading pound-signs.  Copy this text file to the file "/pfi.conf"
50 # on a floppy disk or USB pen drive (hereinafter referred to as "the pfi
51 # media") and have that media inserted or attached to the computer while
52 # you boot from the installer CD-ROM.  The installer will attempt to
53 # locate this file and, if found, will use the variables present within it
54 # to configure the installer boot process.
55
56 # This file has the same syntax as /etc/rc.conf, and it can contain any
57 # setting which is meaningful in /etc/rc.conf as well.  Any rc.conf
58 # setting which is given will only be obeyed, however, if the RCNG script
59 # to which that setting applies is named in pfi_rc_actions.
60
61 # EXAMPLE 1:
62 # Boot the installer headless, configure the network interface dc0,
63 # and start the CGI frontend.
64 #
65 # ifconfig_dc0="DHCP"
66 # pfi_rc_actions="netif dhclient"
67 # pfi_frontend="cgi"
68
69 # EXAMPLE 2:
70 # Boot the installer headless, configure the network interface rl0,
71 # and allow ssh'ing into the box as root with the password "sekrit".
72 #
73 # ifconfig_rl0="DHCP"
74 # pfi_sshd_permit_root_login="YES"
75 # pfi_set_root_password="sekrit"
76 # pfi_rc_actions="netif dhclient sshd"
77 # pfi_frontend="none"