1 | # This contains only things which interactive installers are still likely to want. |
---|
2 | |
---|
3 | ### Mirror settings |
---|
4 | # All of these are now set by installer.sh |
---|
5 | # d-i mirror/country string manual |
---|
6 | # d-i mirror/http/hostname string mirrors.mit.edu |
---|
7 | # d-i mirror/http/directory string /ubuntu |
---|
8 | # d-i mirror/http/proxy string |
---|
9 | |
---|
10 | # Suite to install. |
---|
11 | d-i mirror/suite string precise |
---|
12 | # Suite to use for loading installer components (optional). |
---|
13 | #d-i mirror/udeb/suite string intrepid |
---|
14 | # Components to use for loading installer components (optional). |
---|
15 | #d-i mirror/udeb/components multiselect main, restricted |
---|
16 | |
---|
17 | ### Clock and time zone setup |
---|
18 | # Controls whether or not the hardware clock is set to UTC. |
---|
19 | d-i clock-setup/utc boolean true |
---|
20 | |
---|
21 | # You may set this to any valid setting for $TZ; see the contents of |
---|
22 | # /usr/share/zoneinfo/ for valid values. |
---|
23 | d-i time/zone string US/Eastern |
---|
24 | |
---|
25 | # Controls whether to use NTP to set the clock during the install |
---|
26 | d-i clock-setup/ntp boolean true |
---|
27 | # NTP server to use. The default is almost always fine here. |
---|
28 | #d-i clock-setup/ntp-server ntp.example.com |
---|
29 | |
---|
30 | # This command is run just before the install finishes, but when there is |
---|
31 | # still a usable /target directory. You can chroot to /target and use it |
---|
32 | # directly, or use the apt-install and in-target commands to easily install |
---|
33 | # packages and run commands in the target system. |
---|
34 | #d-i preseed/late_command string apt-install zsh; in-target chsh -s /bin/zsh |
---|
35 | |
---|
36 | d-i preseed/late_command string sh /debathena/postinstall.sh |
---|