tree based installations will require either a "method=URL" (Fedora < 19) or "inst.repo=URL" (Fedora 19+) to be passed to the kernel command line. Although virt-install automatically appends this to the command line we generate, this is someething that should be properly generated by us. https://gitlab.com/libosinfo/osinfo-db/issues/26 Signed-off-by: Fabiano Fidêncio <fidencio@xxxxxxxxxx> --- .../fedoraproject.org/fedora-kickstart-desktop.xml.in | 11 +++++++++++ .../fedoraproject.org/fedora-kickstart-jeos.xml.in | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/data/install-script/fedoraproject.org/fedora-kickstart-desktop.xml.in b/data/install-script/fedoraproject.org/fedora-kickstart-desktop.xml.in index f918938..eebdbb5 100644 --- a/data/install-script/fedoraproject.org/fedora-kickstart-desktop.xml.in +++ b/data/install-script/fedoraproject.org/fedora-kickstart-desktop.xml.in @@ -108,6 +108,17 @@ </xsl:otherwise> </xsl:choose> <xsl:value-of select="script/expected-filename"/> + <xsl:if test="script/installation-source = 'network'"> + <xsl:choose> + <xsl:when test="os/version < 19"> + <xsl:text> method=</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:text> inst.repo=</xsl:text> + </xsl:otherwise> + </xsl:choose> + <xsl:call-template name="installation-url"/> + </xsl:if> </xsl:template> <xsl:template name="installation-url"> diff --git a/data/install-script/fedoraproject.org/fedora-kickstart-jeos.xml.in b/data/install-script/fedoraproject.org/fedora-kickstart-jeos.xml.in index 5b5fe8e..fe5f27b 100644 --- a/data/install-script/fedoraproject.org/fedora-kickstart-jeos.xml.in +++ b/data/install-script/fedoraproject.org/fedora-kickstart-jeos.xml.in @@ -100,6 +100,17 @@ </xsl:otherwise> </xsl:choose> <xsl:value-of select="script/expected-filename"/> + <xsl:if test="script/installation-source = 'network'"> + <xsl:choose> + <xsl:when test="os/version < 19"> + <xsl:text> method=</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:text> inst.repo=</xsl:text> + </xsl:otherwise> + </xsl:choose> + <xsl:call-template name="installation-url"/> + </xsl:if> </xsl:template> <xsl:template name="installation-url"> -- 2.21.0 _______________________________________________ Libosinfo mailing list Libosinfo@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/libosinfo