summaryrefslogtreecommitdiff
path: root/templates/protocols/rip
diff options
context:
space:
mode:
Diffstat (limited to 'templates/protocols/rip')
-rw-r--r--templates/protocols/rip/distribute-list/interface/node.def4
-rw-r--r--templates/protocols/rip/interface/node.def8
-rw-r--r--templates/protocols/rip/passive-interface/node.def30
3 files changed, 17 insertions, 25 deletions
diff --git a/templates/protocols/rip/distribute-list/interface/node.def b/templates/protocols/rip/distribute-list/interface/node.def
index 46fe743d..749e5fb5 100644
--- a/templates/protocols/rip/distribute-list/interface/node.def
+++ b/templates/protocols/rip/distribute-list/interface/node.def
@@ -5,6 +5,4 @@ syntax:expression: exec "if [ -z \"`ip addr | grep $VAR(@) `\" ]; then
echo ethernet interface $VAR(@) doesn\\'t exist on this system ; \
exit 1 ; \
fi ; "
-allowed: local -a array;
- array=( /sys/class/net/{eth,vmnet}* ) ;
- echo -n ${array[@]##*/}
+allowed: ${vyatta_sbindir}/vyatta-interfaces.pl --show all
diff --git a/templates/protocols/rip/interface/node.def b/templates/protocols/rip/interface/node.def
index 8a1e560e..1cbbdaac 100644
--- a/templates/protocols/rip/interface/node.def
+++ b/templates/protocols/rip/interface/node.def
@@ -6,8 +6,6 @@ syntax:expression: exec " \
echo ethernet interface $VAR(@) doesn\\'t exist on this system ; \
exit 1 ; \
fi ; "
-create:expression: "vyatta-vtysh -c \"configure terminal\" -c \"router rip\" -c \"network $VAR(@)\" "
-delete:expression: "vyatta-vtysh -c \"configure terminal\" -c \"router rip\" -c \"no network $VAR(@)\" "
-allowed: local -a array;
- array=( /sys/class/net/{eth,vmnet}* ) ;
- echo -n ${array[@]##*/}
+create:vyatta-vtysh -c "configure terminal" -c "router rip" -c "network $VAR(@)"
+delete:vyatta-vtysh -c "configure terminal" -c "router rip" -c "no network $VAR(@)"
+allowed: ${vyatta_sbindir}/vyatta-interfaces.pl --show all
diff --git a/templates/protocols/rip/passive-interface/node.def b/templates/protocols/rip/passive-interface/node.def
index 1663df1b..09039331 100644
--- a/templates/protocols/rip/passive-interface/node.def
+++ b/templates/protocols/rip/passive-interface/node.def
@@ -6,20 +6,16 @@ syntax:expression: exec " \
echo ethernet interface $VAR(@) doesn\\'t exist on this system ; \
exit 1 ; \
fi ; "
-update:expression: "if [ x$VAR(x) == xdefault ]; then \
- vyatta-vtysh -c \"configure terminal\" -c \"router rip\" \
- -c \"passive-interface default\"; \
- else \
- vyatta-vtysh -c \"configure terminal\" -c \"router rip\" \
- -c \"passive-interface $VAR(@)\"; \
- fi; "
-delete:expression: "if [ x$VAR(x) == xdefault ]; then \
- vyatta-vtysh -c \"configure terminal\" -c \"router rip\" \
- -c \"no passive-interface default\"; \
- else \
- vyatta-vtysh -c \"configure terminal\" -c \"router rip\" \
- -c \"no passive-interface $VAR(@)\"; \
- fi; "
-allowed: local -a array;
- array=( /sys/class/net/{eth,vmnet}* ) ;
- echo -n ${array[@]##*/}
+update: if [ x$VAR(x) == xdefault ]
+ then vyatta-vtysh -c "configure terminal" -c "router rip" \
+ -c "passive-interface default"
+ else vyatta-vtysh -c "configure terminal" -c "router rip" \
+ -c "passive-interface $VAR(@)"
+ fi
+delete: if [ x$VAR(x) == xdefault ]
+ then vyatta-vtysh -c "configure terminal" -c "router rip" \
+ -c "no passive-interface default"
+ else vyatta-vtysh -c "configure terminal" -c "router rip" \
+ -c "no passive-interface $VAR(@)"
+ fi
+allowed: ${vyatta_sbindir}/vyatta-interfaces.pl --show all