forked from jasherai/ubuntu
-
Notifications
You must be signed in to change notification settings - Fork 1
/
default.seed.m4
57 lines (49 loc) · 1.92 KB
/
default.seed.m4
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
# Preseed Ubuntu for vagrant.
# Network.
d-i netcfg/get_hostname string __HOST__
d-i netcfg/get_domain string __DOMAIN__
d-i netcfg/wireless_wep string
# Clock.
d-i clock-setup/utc boolean true
d-i time/zone string UTC
# Partitions.
d-i partman-auto/disk string /dev/sda
d-i partman-auto/method string regular
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-md/device_remove_md boolean true
d-i partman-auto/choose_recipe select atomic
d-i partman/default_filesystem string ext4
d-i partman/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true
# Kernel.
d-i base-installer/kernel/override-image string __KERNEL__
# Users.
d-i passwd/root-password password __ROOT_PASSWORD__
d-i passwd/root-password-again password __ROOT_PASSWORD__
d-i passwd/user-uid string 1000
d-i passwd/user-fullname string VagrantUser
d-i passwd/username string __USERNAME__
d-i passwd/user-password password __PASSWORD__
d-i passwd/user-password-again password __PASSWORD__
d-i user-setup/allow-password-weak boolean true
d-i user-setup/encrypt-home boolean false
# Packages and repositories.
d-i mirror/http/proxy string
# d-i apt-setup/local0/repository string http://packages.devstructure.com maverick main
# d-i apt-setup/local0/source boolean false
# d-i apt-setup/local0/key string http://packages.devstructure.com/keyring.gpg
tasksel tasksel/first multiselect
d-i pkgsel/include string curl openssh-server
#d-i pkgsel/include string openssh-server sandbox blueprint
d-i pkgsel/update-policy select none
d-i pkgsel/install-language-support boolean false
# Grub and reboot.
d-i grub-installer/only_debian boolean true
d-i grub-installer/with_other_os boolean true
d-i finish-install/reboot_in_progress note
d-i cdrom-detect/eject boolean true
d-i debian-installer/splash boolean false
# Everything else.
d-i preseed/late_command string sh /cdrom/__LABEL__.sh