tree based installations will require either a "method=URL" (for EL < 7) or "inst.repo=URL" (for EL >= 7) to be passed to the kernel command line. Although virt-install automatically appends this to kernel command line we generate, this is something that should be properly generated by us. https://gitlab.com/libosinfo/osinfo-db/issues/26 Signed-off-by: Fabiano Fidêncio <fidencio@xxxxxxxxxx> --- .../centos.org/centos-kickstart-desktop.xml.in | 11 +++++++++++ .../centos.org/centos-kickstart-jeos.xml.in | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/data/install-script/centos.org/centos-kickstart-desktop.xml.in b/data/install-script/centos.org/centos-kickstart-desktop.xml.in index c215115..db4a785 100644 --- a/data/install-script/centos.org/centos-kickstart-desktop.xml.in +++ b/data/install-script/centos.org/centos-kickstart-desktop.xml.in @@ -67,6 +67,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 < 7"> + <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="version"> diff --git a/data/install-script/centos.org/centos-kickstart-jeos.xml.in b/data/install-script/centos.org/centos-kickstart-jeos.xml.in index 8349928..d872800 100644 --- a/data/install-script/centos.org/centos-kickstart-jeos.xml.in +++ b/data/install-script/centos.org/centos-kickstart-jeos.xml.in @@ -59,6 +59,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 < 7"> + <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="version"> -- 2.21.0 _______________________________________________ Libosinfo mailing list Libosinfo@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/libosinfo