MahiroOS-jhalfs/common/kernfs.xsl
Pierre Labastie 13c475babc Get virtual kernel filesystem commands from the book, and really add
/run/systemd/resolve/resolv.conf after creating the kernel FS in chapter 6
2019-03-13 06:31:55 +00:00

23 lines
632 B
XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- $Id: kernfs.xsl 3776 2014-01-12 21:43:04Z pierre $ -->
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="text"/>
<xsl:template match="/">
<xsl:apply-templates select="//userinput[contains(string(),'--bind') or
contains(string(),'/proc') or
contains(string(),'readlink')]"/>
</xsl:template>
<xsl:template match="userinput">
<xsl:apply-templates/>
<xsl:text>
</xsl:text>
</xsl:template>
</xsl:stylesheet>