summaryrefslogtreecommitdiff
path: root/scripts/firewall/vyatta-show-firewall.pl
diff options
context:
space:
mode:
authorBob Gilligan <gilligan@sydney.vyatta.com>2007-12-17 14:49:25 -0800
committerBob Gilligan <gilligan@sydney.vyatta.com>2007-12-17 14:49:25 -0800
commit57aedd6c182e619856d6f5b2b9387407bb1abdce (patch)
treea350eff02fb91925dbd35cb4cd275c3640ecca21 /scripts/firewall/vyatta-show-firewall.pl
parent543de3ad1e144d0ab8f31a47bee8b21bb1fae264 (diff)
downloadvyatta-op-firewall-57aedd6c182e619856d6f5b2b9387407bb1abdce.tar.gz
vyatta-op-firewall-57aedd6c182e619856d6f5b2b9387407bb1abdce.zip
Fixed several firewall show command templates files>
Diffstat (limited to 'scripts/firewall/vyatta-show-firewall.pl')
-rwxr-xr-xscripts/firewall/vyatta-show-firewall.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/firewall/vyatta-show-firewall.pl b/scripts/firewall/vyatta-show-firewall.pl
index 241a03a..be9e60d 100755
--- a/scripts/firewall/vyatta-show-firewall.pl
+++ b/scripts/firewall/vyatta-show-firewall.pl
@@ -75,13 +75,13 @@ if ($chain_name eq "-all") {
my @chains = $config->listOrigNodes();
foreach (@chains) {
print "Firewall \"$_\":\n";
- open(RENDER, "| /opt/vyatta/libexec/xorp/render_xml $xsl_file") or exit 1;
+ open(RENDER, "| /opt/vyatta/sbin/render_xml $xsl_file") or exit 1;
show_chain($_, *RENDER{IO});
close RENDER;
print "-" x 80 . "\n";
}
} else {
- open(RENDER, "| /opt/vyatta/libexec/xorp/render_xml $xsl_file") or exit 1;
+ open(RENDER, "| /opt/vyatta/sbin/render_xml $xsl_file") or exit 1;
show_chain($chain_name, *RENDER{IO});
close RENDER;
}