[Libosinfo] [PATCH 1/4] debian: Add templates to JEOS script
Lasse Schuirmann
lasse.schuirmann at gmail.com
Tue Jul 8 13:39:44 UTC 2014
Something went wrong with git send-email so that this new patch is
seperated from the others. I'm sorry for the inconvenience. If you
need the four patches in a row please say so. (And I appreciate any
hints on how to get git doing this but I'll figure it out eventually
anyway.)
2014-07-08 15:35 GMT+02:00 Lasse Schuirmann <lasse.schuirmann at gmail.com>:
> This introduces default values so that no questions are asked if
> localization or target disk are not given or 'C'.
> ---
> data/install-scripts/debian.xml | 52 +++++++++++++++++++++++++++++++++--------
> 1 file changed, 42 insertions(+), 10 deletions(-)
>
> diff --git a/data/install-scripts/debian.xml b/data/install-scripts/debian.xml
> index c5c8592..e344bda 100644
> --- a/data/install-scripts/debian.xml
> +++ b/data/install-scripts/debian.xml
> @@ -1,4 +1,5 @@
> <libosinfo version="0.0.1">
> + <!-- JEOS PROFILE -->
> <install-script id='http://debian.org/scripts/debian/jeos'>
> <profile>jeos</profile>
> <expected-filename>preseed.cfg</expected-filename>
> @@ -8,6 +9,7 @@
> <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"/>
> </config>
> <injection-method>initrd</injection-method>
> <template>
> @@ -17,33 +19,64 @@
>
> <xsl:output method="text"/>
>
> + <xsl:template name="target-disk">
> + <xsl:choose>
> + <xsl:when test="config/target-disk != ''">
> + <xsl:value-of select="config/target-disk"/>
> + </xsl:when>
> + <xsl:otherwise>
> + <xsl:text>/dev/vda</xsl:text>
> + </xsl:otherwise>
> + </xsl:choose>
> + </xsl:template>
> +
> + <xsl:template name="l10n-language">
> + <xsl:choose>
> + <xsl:when test="config/l10n-language != '' and config/l10n-language != 'C'">
> + <xsl:value-of select="config/l10n-language"/>
> + </xsl:when>
> + <xsl:otherwise>
> + <xsl:text>en_US</xsl:text>
> + </xsl:otherwise>
> + </xsl:choose>
> + </xsl:template>
> +
> + <xsl:template name="l10n-keyboard">
> + <xsl:choose>
> + <xsl:when test="config/l10n-keyboard != '' and config/l10n-keyboard != 'C'">
> + <xsl:value-of select="config/l10n-keyboard"/>
> + </xsl:when>
> + <xsl:otherwise>
> + <xsl:text>us</xsl:text>
> + </xsl:otherwise>
> + </xsl:choose>
> + </xsl:template>
> +
> <xsl:template match="/command-line">
> - <xsl:text>file=/</xsl:text>
> - <xsl:value-of select="script/expected-filename"/>
> - <xsl:text> debian-installer/locale=</xsl:text>
> - <xsl:value-of select="config/l10n-language"/>
> <xsl:text> keyboard-configuration/xkb-keymap=</xsl:text>
> - <xsl:value-of select="config/l10n-keyboard"/>
> - <xsl:text> auto-install/enableconsole-setup/ask_detect=false debconf/priority=critical netcfg/choose_interface=auto</xsl:text>
> + <xsl:call-template name="l10n-keyboard"/>
> + <xsl:text> debconf/priority=critical</xsl:text>
> </xsl:template>
>
> <xsl:template match="/install-script-config">
> -d-i debian-installer/locale select <xsl:value-of select="config/l10n-language"/>
> +d-i debian-installer/locale select <xsl:call-template name="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 console-setup/layoutcode string <xsl:call-template name="l10n-keyboard"/>
>
> d-i netcfg/choose_interface select auto
> d-i netcfg/get_hostname string localhost
> d-i netcfg/get_domain string localdomain
> d-i netcfg/disable_dhcp boolean false
> -d-i mirror/http/proxy string
> +d-i mirror/http/proxy string
> d-i netcfg/wireless_wep string
>
> d-i clock-setup/utc boolean true
> d-i time/zone select <xsl:value-of select="config/l10n-timezone"/>
>
> +d-i partman-auto/disk string <xsl:call-template name="target-disk"/>
> d-i partman-auto/method string regular
> d-i partman-auto/choose_recipe select home
> +
> d-i partman/confirm_write_new_label boolean true
> d-i partman/choose_partition select finish
> d-i partman/confirm boolean true
> @@ -69,5 +102,4 @@ d-i finish-install/reboot_in_progress note
> </xsl:stylesheet>
> </template>
> </install-script>
> -
> </libosinfo>
> --
> 2.0.1
>
More information about the Libosinfo
mailing list