summaryrefslogtreecommitdiff
path: root/templates/protocols/ospf/redistribute/rip/node.def
diff options
context:
space:
mode:
authorStig Thormodsrud <stig@vyatta.com>2008-06-06 18:20:42 -0700
committerStig Thormodsrud <stig@vyatta.com>2008-06-06 18:20:42 -0700
commit8f2dddd46eabb178c6b9f262b1a09b285578a1b8 (patch)
treee7aeccadc3299b35a445039dcf85c53a65d324eb /templates/protocols/ospf/redistribute/rip/node.def
parent71882f2f2c47a9df17ffdec69c6b9e8be3e4a237 (diff)
downloadvyatta-cfg-quagga-8f2dddd46eabb178c6b9f262b1a09b285578a1b8.tar.gz
vyatta-cfg-quagga-8f2dddd46eabb178c6b9f262b1a09b285578a1b8.zip
Fix 3316: "metric-type" option does not exist in the CLI for OSPF redistribution
- also reformat to the newer escape-free format
Diffstat (limited to 'templates/protocols/ospf/redistribute/rip/node.def')
-rw-r--r--templates/protocols/ospf/redistribute/rip/node.def35
1 files changed, 19 insertions, 16 deletions
diff --git a/templates/protocols/ospf/redistribute/rip/node.def b/templates/protocols/ospf/redistribute/rip/node.def
index 58bd8338..4382e22f 100644
--- a/templates/protocols/ospf/redistribute/rip/node.def
+++ b/templates/protocols/ospf/redistribute/rip/node.def
@@ -1,18 +1,21 @@
help: Set to redistribute RIP routes
delete:expression: "touch /tmp/ospf-redist-rip.$PPID"
-end:expression: "${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" \
- -c \"router ospf\" \
- -c \"no redistribute rip \"; \
- if [ -f \"/tmp/ospf-redist-rip.$PPID\" ]; then \
- rm -rf /tmp/ospf-redist-rip.$PPID; \
- else \
- if [ -n \"$VAR(./metric/@)\" ]; then \
- COND=\"metric $VAR(./metric/@)\"; \
- fi; \
- if [ -n \"$VAR(./route-map/@)\" ]; then \
- COND=\"$COND route-map $VAR(./route-map/@)\"; \
- fi; \
- ${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" \
- -c \"router ospf\" \
- -c \"redistribute rip $COND\"; \
- fi; "
+end: ${vyatta_sbindir}/vyatta-vtysh.pl -c "configure terminal" \
+ -c "router ospf" \
+ -c "no redistribute rip";
+ if [ -f "/tmp/ospf-redist-rip.$PPID" ]; then
+ rm -f /tmp/ospf-redist-rip.$PPID;
+ else
+ if [ -n "$VAR(./metric/@)" ]; then
+ COND="metric $VAR(./metric/@)";
+ fi;
+ if [ -n "$VAR(./route-map/@)" ]; then
+ COND="$COND route-map $VAR(./route-map/@)";
+ fi;
+ if [ -n "$VAR(./metric-type/@)" ]; then
+ COND="$COND metric-type $VAR(./metric-type/@)";
+ fi;
+ ${vyatta_sbindir}/vyatta-vtysh.pl -c "configure terminal" \
+ -c "router ospf" \
+ -c "redistribute rip $COND";
+ fi;