~ubuntu-branches/ubuntu/precise/cobbler/precise-201110250011

« back to all changes in this revision

Viewing changes to .pc/53_sample_preseed_kopts_postinst.patch/kickstarts/sample.seed

  • Committer: Bazaar Package Importer
  • Author(s): Andres Rodriguez
  • Date: 2011-07-05 12:45:32 UTC
  • Revision ID: james.westby@ubuntu.com-20110705124532-gpwcsrd022k5lwu4
Tags: 2.1.0+git20110602-0ubuntu13
* debian/patches:
  - 52_ubuntu_default_config.patch: Rename/update patch created by quilt
    for changes to config/settings.
  - 53_sample_preseed_kopts_postinst.patch: Add post inst kernel options
    to sample preseed. (LP: #760019)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#platform=x86, AMD64, or Intel EM64T
 
2
# System authorization information
 
3
 
 
4
# System bootloader configuration
 
5
d-i     grub-installer/only_debian      boolean true
 
6
#grub-installer grub-installer/bootdev  string  hd0
 
7
d-i     grub-installer/bootdev  string  hd0
 
8
 
 
9
# Partition clearing information
 
10
### Partitioning available methods are: "regular", "lvm" and "crypto"
 
11
d-i partman-auto/disk string /dev/sda
 
12
d-i partman-auto/method string lvm
 
13
d-i partman-auto/purge_lvm_from_device boolean true
 
14
d-i partman-lvm/device_remove_lvm boolean true
 
15
d-i partman-lvm/confirm boolean true
 
16
 
 
17
#d-i partman-auto/init_automatically_partition \\
 
18
#       select Guided - use entire disk and set up LVM
 
19
 
 
20
#d-i partman-auto/expert_recipe_file string /recipe
 
21
d-i partman-auto/choose_recipe select atomic
 
22
 
 
23
d-i partman/confirm_write_new_label boolean true
 
24
d-i partman/choose_partition select finish
 
25
d-i partman/confirm boolean true
 
26
 
 
27
 
 
28
# Use text mode install
 
29
 
 
30
# Firewall configuration
 
31
 
 
32
# Run the Setup Agent on first boot
 
33
 
 
34
# System keyboard
 
35
d-i     console-setup/dont_ask_layout   note    
 
36
d-i     console-keymaps-at/keymap       select  us
 
37
# System language
 
38
 
 
39
# Use network installation
 
40
# NOTE : The suite seems to be hardcoded on installer
 
41
d-i     mirror/suite            string  $suite
 
42
d-i     mirror/country          string  enter information manually
 
43
d-i     mirror/http/hostname    string  $hostname
 
44
d-i     mirror/http/directory   string  $directory
 
45
d-i     mirror/http/proxy       string  
 
46
# If any cobbler repo definitions were referenced in the kickstart profile, include them here.
 
47
#apt-setup-udeb apt-setup/services-select multiselect   security
 
48
d-i     apt-setup/services-select multiselect   security
 
49
d-i     apt-setup/security_host string  $hostname$directory-security
 
50
d-i     apt-setup/volatile_host string  $hostname$directory-volatile
 
51
 
 
52
# Network information
 
53
# NOTE : this questions are asked before downloading preseed
 
54
#d-i    netcfg/get_hostname     string unassigned-hostname
 
55
#d-i    netcfg/get_domain       string unassigned-hostname
 
56
 
 
57
# Reboot after installation
 
58
finish-install  finish-install/reboot_in_progress       note    
 
59
 
 
60
#Root password
 
61
d-i     passwd/root-password-crypted    password        \$1\$mF86/UHC\$WvcIcX2t6crBz2onWxyac.
 
62
user-setup-udeb passwd/root-login       boolean true
 
63
user-setup-udeb passwd/make-user        boolean false
 
64
# SELinux configuration
 
65
 
 
66
# Do not configure the X Window System
 
67
 
 
68
# System timezone
 
69
clock-setup     clock-setup/utc boolean false
 
70
tzsetup-udeb    time/zone       select  America/New_York
 
71
# Install OS instead of upgrade
 
72
 
 
73
# Clear the Master Boot Record
 
74
 
 
75
 
 
76
# Select individual packages and groups for install
 
77
d-i     pkgsel/include  string  openssh-server
 
78
tasksel tasksel/first   multiselect     standard, desktop
 
79
 
 
80
# Disable automatic updates
 
81
d-i pkgsel/update-policy select none
 
82
 
 
83
# Debian specific configuration
 
84
# See http://www.debian.org/releases/stable/i386/apbs04.html.en & preseed documentation
 
85
 
 
86
# By default the installer requires that repositories be authenticated
 
87
# using a known gpg key. This setting can be used to disable that
 
88
# authentication. Warning: Insecure, not recommended.
 
89
d-i     debian-installer/allow_unauthenticated  string  true
 
90
 
 
91
# Some versions of the installer can report back on what software you have
 
92
# installed, and what software you use. The default is not to report back,
 
93
# but sending reports helps the project determine what software is most
 
94
# popular and include it on CDs.
 
95
popularity-contest      popularity-contest/participate  boolean false
 
96