| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| ### Localization |
| # Locale sets language and country. |
| d-i debian-installer/locale string en_US |
| |
| # Keyboard selection. |
| d-i console-keymaps-at/keymap select us |
| |
| ### Network configuration |
| d-i netcfg/choose_interface select auto |
| d-i netcfg/get_hostname string systemvm |
| d-i netcfg/get_domain string cloudstack.org |
| |
| ### Mirror settings |
| d-i mirror/country string manual |
| d-i mirror/http/hostname string http.us.debian.org |
| d-i mirror/http/directory string /debian |
| d-i mirror/http/proxy string |
| |
| ### Clock and time zone setup |
| d-i clock-setup/utc boolean true |
| d-i time/zone string UTC |
| d-i clock-setup/ntp boolean true |
| |
| ### Partitioning |
| d-i partman-auto/disk string /dev/sda |
| d-i partman-auto/method string regular |
| 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 |
| d-i partman/confirm_nooverwrite boolean true |
| |
| ### Base system installation |
| # ... |
| |
| ### Account setup |
| d-i passwd/root-login boolean true |
| d-i passwd/root-password password password |
| d-i passwd/root-password-again password password |
| d-i passwd/user-fullname string Cloud Stack |
| d-i passwd/username string cloud |
| d-i passwd/user-password password cloud |
| d-i passwd/user-password-again password cloud |
| d-i user-setup/encrypt-home boolean false |
| d-i user-setup/allow-password-weak boolean true |
| d-i passwd/user-default-groups string audio cdrom video admin |
| |
| ### Apt setup |
| # ... |
| |
| ### Package selection |
| tasksel tasksel/first multiselect ssh-server |
| d-i pkgsel/include string openssh-server ntp acpid sudo bzip2 openssl |
| # Allowed values: none, safe-upgrade, full-upgrade |
| d-i pkgsel/upgrade select none |
| |
| popularity-contest popularity-contest/participate boolean false |
| |
| ### Boot loader installation |
| d-i grub-installer/only_debian boolean true |
| d-i finish-install/reboot_in_progress note |
| |
| ### Preseeding other packages |
| libssl1.0.0 libssl1.0.0/restart-services string |
| libssl1.0.0 libssl1.0.0/restart-failed error |
| |
| #### Advanced options |
| # Prevent packaged version of VirtualBox Guest Additions being installed: |
| d-i preseed/early_command string sed -i \ |
| '/in-target/idiscover(){/sbin/discover|grep -v VirtualBox;}' \ |
| /usr/lib/pre-pkgsel.d/20install-hwpackages |