diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2013-10-08 07:40:28 (GMT) |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2013-10-08 07:40:28 (GMT) |
commit | b4aaf818fb99122338e7c4f65120625eff890601 (patch) | |
tree | 857b14a8cca0ac7ee053cfece498d5264ea80ffa | |
parent | 1893fca947ea2952f1b4c780a1572164e2c5d1ae (diff) | |
download | kolab-scripts-b4aaf818fb99122338e7c4f65120625eff890601.tar.gz |
Add a wheezy-31 bootstrap script for installing from OBS
-rw-r--r-- | autoinstall/bootstrap/bootstrap-wheezy-script-obs.txt | 8 | ||||
-rw-r--r-- | autoinstall/wheezy-31.cfg | 45 |
2 files changed, 53 insertions, 0 deletions
diff --git a/autoinstall/bootstrap/bootstrap-wheezy-script-obs.txt b/autoinstall/bootstrap/bootstrap-wheezy-script-obs.txt new file mode 100644 index 0000000..ffb20b8 --- /dev/null +++ b/autoinstall/bootstrap/bootstrap-wheezy-script-obs.txt @@ -0,0 +1,8 @@ +#!/bin/bash + +# Add the kolab repository. +cat > /etc/apt/sources.list.d/kolab.list << EOF +deb http://obs.kolabsys.com:82/Kolab:/3.1/Debian_7.0/ ./ +EOF + +apt-get update || : diff --git a/autoinstall/wheezy-31.cfg b/autoinstall/wheezy-31.cfg new file mode 100644 index 0000000..ff8aa0b --- /dev/null +++ b/autoinstall/wheezy-31.cfg @@ -0,0 +1,45 @@ +d-i debian-installer/locale string en_US +d-i console-keymaps-at/keymap select us +d-i netcfg/choose_interface select auto +d-i netcfg/get_hostname kolab.example.org +d-i netcfg/get_domain kolab.example.org +d-i netcfg/wireless_wep string +d-i mirror/country string enter information manually +d-i mirror/http/hostname string ftp.debian.org +d-i mirror/http/directory string /debian/ +d-i clock-setup/utc boolean true +d-i time/zone string Europe/Zurich +d-i clock-setup/ntp boolean true + +d-i partman-auto/disk string /dev/sda +d-i partman-auto/method string lvm +d-i partman-auto/choose_recipe select atomic +d-i partman-lvm/confirm boolean true +d-i partman-lvm/device_remove_lvm boolean true +d-i partman-lvm/confirm_nooverwrite boolean true +d-i partman/choose_partition select finish +d-i partman/confirm boolean true +d-i partman/confirm_nooverwrite boolean true +d-i partman-basicfilesystems/no_mount_point yes + +d-i passwd/root-password password Welcome2KolabSystems +d-i passwd/root-password-again password Welcome2KolabSystems + +d-i passwd/user-fullname string Kolab Systems User +d-i passwd/username string developer +d-i passwd/user-password password Welcome2KolabSystems +d-i passwd/user-password-again password Welcome2KolabSystems + +d-i apt-setup/non-free boolean true +d-i apt-setup/contrib boolean true + +tasksel tasksel/first multiselect standard +d-i pkgsel/include select openssh-server sysv-rc-conf wget +d-i popularity-contest/participate boolean false + +d-i grub-installer/only_debian boolean true +d-i grub-installer/with_other_os boolean true + +d-i preseed/late_command string in-target wget -q -O/root/init.sh http://git.kolab.org/kolab-scripts/plain/autoinstall/bootstrap/bootstrap-wheezy-script-obs.txt; in-target chmod +x /root/init.sh; in-target bash /root/init.sh + +d-i finish-install/reboot_in_progress note |