summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabiano FidĂȘncio <fabiano@fidencio.org>2014-03-06 16:22:50 +0100
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>2014-03-06 21:40:44 +0000
commit433f15ee9165fa97efd0d62127275d8ff5630070 (patch)
treef71b7ea291a228da70c30a6a796a2fcf5be486b2
parentf7f5648c5ddfee7824c95538bec683b186b52b7a (diff)
downloadlibosinfo-433f15ee9165fa97efd0d62127275d8ff5630070.tar.gz
ubuntu: Add jeos install-script (version >= 12.04)
script based on: https://github.com/clalancette/oz/tree/master/oz/auto Co-Author: Giuseppe Scrivano <gscrivan@redhat.com>
-rw-r--r--data/install-scripts/Makefile.am1
-rw-r--r--data/install-scripts/ubuntu.xml158
-rw-r--r--data/oses/ubuntu.xml.in16
3 files changed, 175 insertions, 0 deletions
diff --git a/data/install-scripts/Makefile.am b/data/install-scripts/Makefile.am
index 442c286..78decc2 100644
--- a/data/install-scripts/Makefile.am
+++ b/data/install-scripts/Makefile.am
@@ -4,6 +4,7 @@ database_DATA = \
debian.xml \
fedora.xml \
rhel.xml \
+ ubuntu.xml \
windows-sif.xml \
windows-cmd.xml \
windows-reg.xml \
diff --git a/data/install-scripts/ubuntu.xml b/data/install-scripts/ubuntu.xml
new file mode 100644
index 0000000..86987b8
--- /dev/null
+++ b/data/install-scripts/ubuntu.xml
@@ -0,0 +1,158 @@
+<libosinfo version="0.0.1">
+ <!-- JEOS PROFILE -->
+ <install-script id='http://ubuntu.com/scripts/ubuntu/jeos'>
+ <profile>jeos</profile>
+ <expected-filename>preseed.cfg</expected-filename>
+ <config>
+ <param name="admin-password" policy="optional"/>
+ <param name="l10n-keyboard" policy="optional" value-map="http://libosinfo.fedorahosted.org/x11-keyboard"/>
+ <param name="l10n-timezone" policy="optional"/>
+ <param name="l10n-language" policy="optional"/>
+ <param name="target-disk" policy="optional"/>
+ <param name="hostname" policy="optional"/>
+ </config>
+ <injection-method>initrd</injection-method>
+ <template>
+ <xsl:stylesheet
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ version="1.0">
+
+ <xsl:output method="text"/>
+
+ <xsl:template match="/command-line">
+ <xsl:text>file=file:/</xsl:text>
+ <xsl:value-of select="script/expected-filename"/>
+ <xsl:text> locale=</xsl:text>
+ <xsl:value-of select="config/l10n-language"/>
+ <xsl:text> keyboard-configuration/layoutcode=</xsl:text>
+ <xsl:value-of select="config/l10n-keyboard"/>
+ <xsl:text> hostname=</xsl:text>
+ <xsl:call-template name="hostname"/>
+ <xsl:text> priority=critical console-setup/ask_detect=false domain=unassigned-domain interface=auto</xsl:text>
+ </xsl:template>
+
+ <xsl:template name="target-disk">
+ <xsl:choose>
+ <xsl:when test="config/target-disk != ''">
+ <xsl:value-of select="config/target-disk"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <!-- IDE -->
+ <xsl:text>/dev/hda</xsl:text>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
+
+ <xsl:template name="hostname">
+ <xsl:choose>
+ <xsl:when test="config/hostname != ''">
+ <xsl:value-of select="config/hostname"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:text>ubuntu</xsl:text>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
+
+<xsl:template match="/install-script-config">d-i debian-installer/locale string <xsl:value-of select="config/l10n-language"/>
+d-i console-setup/ask_detect boolean false
+d-i console-setup/layoutcode string <xsl:value-of select="config/l10n-keyboard"/>
+
+d-i netcfg/choose_interface select auto
+d-i netcfg/get_hostname string <xsl:call-template name="hostname"/>
+d-i netcfg/get_domain string unassigned-domain
+d-i netcfg/wireless_wep string
+
+d-i clock-setup/utc boolean true
+d-i time/zone string <xsl:value-of select="config/l10n-timezone"/>
+
+<xsl:if test="os/version &lt; 7.04">
+d-i partman-auto/disk string <xsl:call-template name="target-disk"/>
+</xsl:if>
+<xsl:if test="os/version = 7.04">
+d-i partman-auto/init_automatically_partition select Use the largest continuous free space
+</xsl:if>
+d-i partman-auto/method string regular
+<xsl:choose>
+<xsl:when test="os/version &lt; 7.10">
+d-i partman-auto/choose_recipe select Separate /home partition
+</xsl:when>
+ <xsl:otherwise>
+d-i partman-auto/choose_recipe select home
+</xsl:otherwise>
+</xsl:choose>
+d-i partman/confirm_write_new_label boolean true
+<xsl:choose>
+<xsl:when test="os/version &lt; 7.10">
+d-i partman/choose_partition select Finish partitioning and write changes to disk
+</xsl:when>
+<xsl:otherwise>
+d-i partman/choose_partition select finish
+</xsl:otherwise>
+</xsl:choose>
+d-i partman/confirm boolean true
+<xsl:if test="os/version &gt; 9.10">
+d-i partman/confirm_nooverwrite boolean true
+</xsl:if>
+
+d-i passwd/root-login boolean true
+d-i passwd/make-user boolean false
+d-i passwd/root-password password <xsl:value-of select="config/admin-password"/>
+d-i passwd/root-password-again password <xsl:value-of select="config/admin-password"/>
+
+<xsl:if test="os/version &lt; 6.10">
+d-i pkgsel/install-language-support boolean false
+</xsl:if>
+
+<xsl:choose>
+<xsl:when test="os/version &lt; 7.10">
+tasksel tasksel/first multiselect ubuntu-standard, ubuntu-desktop
+</xsl:when>
+<xsl:otherwise>
+tasksel tasksel/first multiselect standard
+</xsl:otherwise>
+</xsl:choose>
+<xsl:choose>
+<xsl:when test="os/version &lt; 8.04">
+d-i mirror/http/proxy string
+</xsl:when>
+<xsl:when test="os/version = 10.04">
+d-i pkgsel/include/install-recommends boolean true
+d-i pkgsel/include string ltsp-server-standalone openssh-server python-software-properties
+d-i preseed/late_command string chroot /target /usr/sbin/ltsp-update-sshkeys
+</xsl:when>
+<xsl:when test="os/version = 11.04">
+d-i pkgsel/include/install-recommends boolean true
+d-i pkgsel/include string openssh-server
+</xsl:when>
+<xsl:when test="os/version &gt; 11.04">
+d-i pkgsel/include/install-recommends boolean true
+d-i pkgsel/include string openssh-server python-software-properties
+</xsl:when>
+</xsl:choose>
+
+d-i grub-installer/only_debian boolean true
+d-i grub-installer/with_other_os boolean true
+
+d-i apt-setup/security_host string
+base-config apt-setup/security-updates boolean false
+
+<xsl:if test="os/version &gt; 7.04">
+ubiquity ubiquity/summary note
+ubiquity ubiquity/reboot boolean true
+</xsl:if>
+
+d-i finish-install/reboot_in_progress note
+<xsl:if test="os/version &lt; 6.10">
+d-i prebaseconfig/reboot_in_progress note
+</xsl:if>
+
+<xsl:if test="os/version = 13.04">
+ubiquity ubiquity/success_command string sed -i 's/eject -p -m.*/&amp; [ "$prompt" ] || return 0/' /etc/init.d/casper
+</xsl:if>
+</xsl:template>
+ </xsl:stylesheet>
+ </template>
+ </install-script>
+
+</libosinfo>
diff --git a/data/oses/ubuntu.xml.in b/data/oses/ubuntu.xml.in
index 4e4cbf5..3a5d248 100644
--- a/data/oses/ubuntu.xml.in
+++ b/data/oses/ubuntu.xml.in
@@ -1116,6 +1116,10 @@
<kernel>casper/vmlinuz</kernel>
<initrd>casper/initrd.img</initrd>
</media>
+
+ <installer>
+ <script id='http://ubuntu.com/scripts/ubuntu/jeos'/>
+ </installer>
</os>
<os id="http://ubuntu.com/ubuntu/12.10">
@@ -1177,6 +1181,10 @@
<kernel>casper/vmlinuz</kernel>
<initrd>casper/initrd.img</initrd>
</media>
+
+ <installer>
+ <script id='http://ubuntu.com/scripts/ubuntu/jeos'/>
+ </installer>
</os>
<os id="http://ubuntu.com/ubuntu/13.04">
@@ -1238,6 +1246,10 @@
<kernel>casper/vmlinuz</kernel>
<initrd>casper/initrd.img</initrd>
</media>
+
+ <installer>
+ <script id='http://ubuntu.com/scripts/ubuntu/jeos'/>
+ </installer>
</os>
<os id="http://ubuntu.com/ubuntu/13.10">
@@ -1299,5 +1311,9 @@
<kernel>casper/vmlinuz</kernel>
<initrd>casper/initrd.img</initrd>
</media>
+
+ <installer>
+ <script id='http://ubuntu.com/scripts/ubuntu/jeos'/>
+ </installer>
</os>
</libosinfo>