summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/protocols/ospf/passive-interface/node.def2
-rw-r--r--templates/protocols/rip/interface/node.def4
-rw-r--r--templates/protocols/ripng/interface/node.def4
3 files changed, 5 insertions, 5 deletions
diff --git a/templates/protocols/ospf/passive-interface/node.def b/templates/protocols/ospf/passive-interface/node.def
index 9db0aca8..d82edd03 100644
--- a/templates/protocols/ospf/passive-interface/node.def
+++ b/templates/protocols/ospf/passive-interface/node.def
@@ -2,7 +2,7 @@ multi:
type: txt
help: Set to suppress routing updates on an interface
-syntax:expression: exec "${vyatta_sbindir}/vyatta-interfaces.pl \
+commit:expression: exec "${vyatta_sbindir}/vyatta-interfaces.pl \
--check all --dev $VAR(@) 2> /dev/null || \
[ x$VAR(@) == xdefault ]"; \
"$VAR(@) is not 'default' or a known interface name"
diff --git a/templates/protocols/rip/interface/node.def b/templates/protocols/rip/interface/node.def
index 1cbbdaac..3d939ffd 100644
--- a/templates/protocols/rip/interface/node.def
+++ b/templates/protocols/rip/interface/node.def
@@ -1,9 +1,9 @@
multi:
type: txt
help: Set interface name
-syntax:expression: exec " \
+commit:expression: exec " \
if [ -z \"`ip addr | grep $VAR(@) `\" ]; then \
- echo ethernet interface $VAR(@) doesn\\'t exist on this system ; \
+ echo interface $VAR(@) doesn\\'t exist on this system ; \
exit 1 ; \
fi ; "
create:vyatta-vtysh -c "configure terminal" -c "router rip" -c "network $VAR(@)"
diff --git a/templates/protocols/ripng/interface/node.def b/templates/protocols/ripng/interface/node.def
index 3a967735..e55355f4 100644
--- a/templates/protocols/ripng/interface/node.def
+++ b/templates/protocols/ripng/interface/node.def
@@ -2,9 +2,9 @@ multi:
type: txt
help: Set interface name
allowed: ${vyatta_sbindir}/vyatta-interfaces.pl --show all
-syntax:expression: exec " \
+commit:expression: exec " \
if [ -z \"`ip addr | grep $VAR(@) `\" ]; then \
- echo ethernet interface $VAR(@) doesn\\'t exist on this system ; \
+ echo interface $VAR(@) doesn\\'t exist on this system ; \
exit 1 ; \
fi ; "