I've got the following XML excerpt. The full XML is the OVF definition.
<?xml version="1.0" encoding="UTF-8"?>
<Envelope xmlns="http://schemas.dmtf.org/ovf/envelope/1" xmlns:cim="http://schemas.dmtf.org/wbem/wscim/1/common" xmlns:ovf="http://schemas.dmtf.org/ovf/envelope/1" xmlns:rasd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData" xmlns:vmw="http://www.vmware.com/schema/ovf" xmlns:vssd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_VirtualSystemSettingData" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" x xml:lang="en-US">
<Item>
<rasd:Caption ovf:msgid="network.eth0.caption"/>
<rasd:Connection>eth0</rasd:Connection>
<rasd:Description ovf:msgid="network.eth0.description"/>
<rasd:ElementName>eth0</rasd:ElementName>
<rasd:InstanceID>13</rasd:InstanceID>
<rasd:ResourceSubType>VmxNet3</rasd:ResourceSubType>
<rasd:ResourceType>10</rasd:ResourceType>
</Item>
<Item>
<rasd:Caption ovf:msgid="network.eth1.caption"/>
<rasd:Connection>eth1</rasd:Connection>
<rasd:Description ovf:msgid="network.eth1.description"/>
<rasd:ElementName>eth1</rasd:ElementName>
<rasd:InstanceID>14</rasd:InstanceID>
<rasd:ResourceSubType>VmxNet3</rasd:ResourceSubType>
<rasd:ResourceType>10</rasd:ResourceType>
</Item>
<Item>
<rasd:Caption ovf:msgid="network.eth2.caption"/>
<rasd:Connection>eth2</rasd:Connection>
<rasd:Description ovf:msgid="network.eth2.description"/>
<rasd:ElementName>eth2</rasd:ElementName>
<rasd:InstanceID>15</rasd:InstanceID>
<rasd:ResourceSubType>VmxNet3</rasd:ResourceSubType>
<rasd:ResourceType>10</rasd:ResourceType>
</Item>
<Item>
<rasd:Caption ovf:msgid="network.eth3.caption"/>
<rasd:Connection>eth3</rasd:Connection>
<rasd:Description ovf:msgid="network.eth3.description"/>
<rasd:ElementName>eth3</rasd:ElementName>
<rasd:InstanceID>16</rasd:InstanceID>
<rasd:ResourceSubType>VmxNet3</rasd:ResourceSubType>
<rasd:ResourceType>10</rasd:ResourceType>
</Item>
</Envelope>
I am trying to insert the line <rasd:AutomaticAllocation>false</rasd:AutomaticAllocation>
before the <rasd:Connection>eth*</rasd:Connection>
line but not on all of them. I've gotten the following XSL so far and it works, the issue though is that I have to hard code each interface I want to disable.
<xsl:template match="rasd:Connection[text()='eth0']">
<xsl:if test="$disableEths='true'">
<xsl:element name="rasd:AutomaticAllocation">false</xsl:element>
<xsl:copy-of select="."/>
</xsl:if>
</xsl:template>
<xsl:template match="rasd:Connection[text()='eth1']">
<xsl:if test="$disableEths='true'">
<xsl:element name="rasd:AutomaticAllocation">false</xsl:element>
<xsl:copy-of select="."/>
</xsl:if>
</xsl:template>
<xsl:template match="rasd:Connection[text()='eth2']">
<xsl:if test="$disableEths='true'">
<xsl:element name="rasd:AutomaticAllocation">false</xsl:element>
<xsl:copy-of select="."/>
</xsl:if>
</xsl:template>
Is there a way to have the user pass in a param containing a delimited list of values they want to disable and if no param is input don't disable any of them? Using xsltproc as the processor if it matters.