{{{#!python # # Copyright (C) 2010-2012, Canonical Ltd (http://www.canonical.com/) # # This file is part of utah. # # utah is free software: you can redistribute it # and/or modify it under the terms of the GNU General Public License # as published by the Free Software Foundation, either version 3 of # the License, or (at your option) any later version. # # utah is distributed in the hope that it will # be useful, but WITHOUT ANY WARRANTY; without even the implied warranty # of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with utah. If not, see # . # # This is the minimal preseed that worked on 8 precise ISOs # Further version-specific tweaks may be necessary or desirable in the future d-i debian-installer/locale string en_US.UTF-8 d-i netcfg/get_hostname string utah-example d-i partman-auto/method string regular #need this for desktop d-i partman/choose_partition select Finish partitioning and write changes to disk #need this for non-desktop d-i partman/confirm_nooverwrite boolean true d-i time/zone string US/Eastern d-i passwd/user-fullname string UTAH d-i passwd/username string utah d-i passwd/user-password password !ubuntu123 d-i passwd/user-password-again password !ubuntu123 d-i pkgsel/include string openssh-server python-yaml bzr git #need this for non-desktop d-i finish-install/reboot_in_progress note d-i preseed/late_command string true }}}