forked from freegeekchicago/preseed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xubuntu1204x32.seed
120 lines (75 loc) · 3.51 KB
/
xubuntu1204x32.seed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#### Preconfiguration File for XUbuntu 12.04
### PXEBoot Entry
#LABEL -
# MENU LABEL Install ^XUbuntu v12.04 32-Bit
# MENU INDENT 4
# KERNEL /ubuntu1204x86/linux
# APPEND initrd=/ubuntu1204x86/initrd.gz auto=true priority=critical interface=eth0 netcfg/get_hostname=freegeekchicago url=http://192.168.100.21/preseed/xubuntu1204x32.seed
### Localization
# Preseeding only locale sets language, country and locale.
d-i debian-installer/locale string en_US
# Keyboard selection
# Disable automatic (interactive) keymap detection
d-i console-setup/ask_detect boolean false
d-i keyboard-configuration/layoutcode string us
### Network configuration
d-i netcfg/get_hostname string freegeekchicago
#Bug in d-i seems to keep the hostname value from getting set properly. Must be set in PXEBoot entry with netcfg/get_hostname=freegeekchicago
d-i netcfg/get_domain string unassigned-domain
### Mirror settings
d-i mirror/http/mirror select CC.archive.ubuntu.com
#Settings above are not available for preseed with netboot
############################################################
#Settings below are available for preseed with netboot
### Clock and time zone setup
# Controls whether or not the hardware clock is set to UTC.
d-i clock-setup/utc boolean true
# You may set this to any valid setting for $TZ; see the contents of
# /usr/share/zoneinfo/ for valid values.
d-i time/zone string US/Central
# Controls whether to use NTP to set the clock during the install
d-i clock-setup/ntp boolean true
### Account setup
# To create a normal user account.
d-i passwd/user-fullname string user
d-i passwd/username string user
# Normal user's password, either in clear text
d-i passwd/user-password password password
d-i passwd/user-password-again password password
# The installer will warn about weak passwords. If you are sure you know
# what you're doing and want to override it, uncomment this.
#d-i user-setup/allow-password-weak boolean true
# Set to true if you want to encrypt the first user's home directory.
d-i user-setup/encrypt-home boolean false
### Partitioning
d-i partman-auto/method string regular
d-i partman-auto/init_automatically_partition select biggest_free
# You can choose one of the three predefined partitioning recipes:
# - atomic: all files in one partition
# - home: separate /home partition
# - multi: separate /home, /usr, /var, and /tmp partitions
d-i partman-auto/choose_recipe select atomic
d-i partman/default_filesystem string ext4
# This makes partman automatically partition without confirmation, provided
# that you told it what to do using one of the methods above.
d-i partman/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
### Package selection
tasksel tasksel/first multiselect xubuntu-desktop
##Maybe replace parts of our install.txt
# Individual additional packages to install
#d-i pkgsel/include string
# Whether to upgrade packages after debootstrap.
# Allowed values: none, safe-upgrade, full-upgrade
#d-i pkgsel/upgrade select none
# Policy for applying updates. May be "none" (no automatic updates),
# "unattended-upgrades" (install security updates automatically), or
# "landscape" (manage system with Landscape).
d-i pkgsel/update-policy select unattended-upgrades
### Boot loader installation
# Grub is the default boot loader (for x86).
d-i grub-installer/only_debian boolean true
### Finishing up the installation
# Avoid that last message about the install being complete.
d-i finish-install/reboot_in_progress note