summaryrefslogtreecommitdiff
path: root/templates/protocols/rip/redistribute/ospf/node.def
blob: 04c43c839b3a8c6263d79f1713001b05c29a11db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
help: Redistribute OSPF routes
delete:expression: "touch /tmp/rip-redist-ospf.$PPID" 
end:expression: "${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" -c \"router rip\" \
        -c \"no redistribute ospf \"; \
      if [ -f \"/tmp/rip-redist-ospf.$PPID\" ]; then \
        rm -rf /tmp/rip-redist-ospf.$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 rip\" \
          -c \"redistribute ospf $COND\"; \
      fi; "