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> --- .../redhat.com/rhel-kickstart-desktop.xml.in | 11 +++++++++++ .../redhat.com/rhel-kickstart-jeos.xml.in | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/data/install-script/redhat.com/rhel-kickstart-desktop.xml.in b/data/install-script/redhat.com/rhel-kickstart-desktop.xml.in index 0eb1716..286c92c 100644 --- a/data/install-script/redhat.com/rhel-kickstart-desktop.xml.in +++ b/data/install-script/redhat.com/rhel-kickstart-desktop.xml.in @@ -78,6 +78,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 match="/install-script-config"> diff --git a/data/install-script/redhat.com/rhel-kickstart-jeos.xml.in b/data/install-script/redhat.com/rhel-kickstart-jeos.xml.in index e08f67a..6e60d03 100644 --- a/data/install-script/redhat.com/rhel-kickstart-jeos.xml.in +++ b/data/install-script/redhat.com/rhel-kickstart-jeos.xml.in @@ -70,6 +70,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 match="/install-script-config"> -- 2.21.0 _______________________________________________ Libosinfo mailing list Libosinfo@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/libosinfo