diff options
Diffstat (limited to 'src/xsl/show_vpn_ike_status.xsl')
-rw-r--r-- | src/xsl/show_vpn_ike_status.xsl | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/xsl/show_vpn_ike_status.xsl b/src/xsl/show_vpn_ike_status.xsl new file mode 100644 index 0000000..64fb7e7 --- /dev/null +++ b/src/xsl/show_vpn_ike_status.xsl @@ -0,0 +1,48 @@ +<?xml version="1.0"?> +<!DOCTYPE stylesheet [ +<!ENTITY newln " "> +]> + +<!-- /* + * Copyright 2006, Vyatta, Inc. + * + * GNU General Public License + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + * 02110-1301 USA + * + * Module: show_arp.xsl + * + * Author(s): Mike Horn, Marat Nepomnyashy + * Date: 2007 + * + */ --> + +<!--XSL template for formatting the "show ike status" command output--> + +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> +<xsl:template match="/"> +<xsl:variable name="pluto_pid" select="opcommand/format/pluto_pid" /> +<xsl:choose> + <xsl:when test="string($pluto_pid)"> +IKE Process Running + +PID: <xsl:value-of select="$pluto_pid" /> + </xsl:when> + <xsl:otherwise> +IKE Process NOT Running + </xsl:otherwise> +</xsl:choose> +</xsl:template> +</xsl:stylesheet> |