/var/lib/cobbler/kickstarts/sample_old.seed is in cobbler-common 2.4.1-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #platform=x86, AMD64, or Intel EM64T
# System authorization information
# System bootloader configuration
d-i grub-installer/only_debian boolean true
#grub-installer grub-installer/bootdev string hd0
d-i grub-installer/bootdev string hd0
### add kernel postinst options (--kopts-post)
d-i debian-installer/add-kernel-opts string $kernel_options_post
# Partition clearing information
### Partitioning available methods are: "regular", "lvm" and "crypto"
d-i partman-auto/disk string /dev/sda
d-i partman-auto/method string lvm
d-i partman-auto/purge_lvm_from_device boolean true
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-lvm/confirm boolean true
#d-i partman-auto/init_automatically_partition \\
# select Guided - use entire disk and set up LVM
#d-i partman-auto/expert_recipe_file string /recipe
d-i partman-auto/choose_recipe select atomic
d-i partman/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
# Use text mode install
# Firewall configuration
# Run the Setup Agent on first boot
# System keyboard
d-i console-setup/dont_ask_layout note
d-i console-keymaps-at/keymap select us
# System language
# Use network installation
# NOTE : The suite seems to be hardcoded on installer
d-i mirror/suite string $suite
d-i mirror/country string enter information manually
d-i mirror/http/hostname string $hostname
d-i mirror/http/directory string $directory
d-i mirror/http/proxy string
# If any cobbler repo definitions were referenced in the kickstart profile, include them here.
#apt-setup-udeb apt-setup/services-select multiselect security
d-i apt-setup/services-select multiselect security
d-i apt-setup/security_host string $hostname$directory-security
d-i apt-setup/volatile_host string $hostname$directory-volatile
# Network information
# NOTE : this questions are asked before downloading preseed
#d-i netcfg/get_hostname string unassigned-hostname
#d-i netcfg/get_domain string unassigned-hostname
# Reboot after installation
finish-install finish-install/reboot_in_progress note
#Root password
d-i passwd/root-password-crypted password \$1\$mF86/UHC\$WvcIcX2t6crBz2onWxyac.
user-setup-udeb passwd/root-login boolean true
user-setup-udeb passwd/make-user boolean false
# SELinux configuration
# Do not configure the X Window System
# System timezone
clock-setup clock-setup/utc boolean false
tzsetup-udeb time/zone select America/New_York
# Install OS instead of upgrade
# Clear the Master Boot Record
# Select individual packages and groups for install
d-i pkgsel/include string openssh-server
tasksel tasksel/first multiselect standard, desktop
# Disable automatic updates
d-i pkgsel/update-policy select none
# Debian specific configuration
# See http://www.debian.org/releases/stable/i386/apbs04.html.en & preseed documentation
# By default the installer requires that repositories be authenticated
# using a known gpg key. This setting can be used to disable that
# authentication. Warning: Insecure, not recommended.
d-i debian-installer/allow_unauthenticated string true
# Some versions of the installer can report back on what software you have
# installed, and what software you use. The default is not to report back,
# but sending reports helps the project determine what software is most
# popular and include it on CDs.
popularity-contest popularity-contest/participate boolean false
|