This repository has been archived on 2023-12-26. You can view files and clone it, but cannot push or open issues or pull requests.
hypervisors/bootstrap/set_volume_pool_mode_open.xsl

20 lines
464 B
XML
Raw Normal View History

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="/pool/target">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
<permissions>
<mode>0755</mode>
</permissions>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>