summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-11-10 20:43:59 +0100
committerGitHub <noreply@github.com>2021-11-10 20:43:59 +0100
commitb3ce83ba29c0414e1aed159f2379b993873832b5 (patch)
treea2d75deaf039865290dfed2022bafaaabca4d900
parent69498ef20d41a0682c17ac6cfa841737b9e01f09 (diff)
parent1a581f8b9f92813cc3f108424e0bc1cea32a0eef (diff)
downloadvyatta-cfg-quagga-crux.tar.gz
vyatta-cfg-quagga-crux.zip
Merge pull request #94 from c-po/crux1.2.9-S1crux
route-map: T3974: use warning over error when "match interface" is non-existent
-rw-r--r--templates/policy/route-map/node.tag/rule/node.tag/match/interface/node.def3
1 files changed, 1 insertions, 2 deletions
diff --git a/templates/policy/route-map/node.tag/rule/node.tag/match/interface/node.def b/templates/policy/route-map/node.tag/rule/node.tag/match/interface/node.def
index f590c32f..b936b00f 100644
--- a/templates/policy/route-map/node.tag/rule/node.tag/match/interface/node.def
+++ b/templates/policy/route-map/node.tag/rule/node.tag/match/interface/node.def
@@ -5,8 +5,7 @@ val_help: Interface name
commit:expression: $VAR(../../action/) != ""; "You must specify an action"
commit:expression: exec " \
if [ -z \"`ip addr | grep $VAR(@) `\" ]; then \
- echo interface $VAR(@) doesn\\'t exist on this system ; \
- exit 1 ; \
+ echo Warning: interface $VAR(@) doesn\\'t exist on this system; \
fi ; "
update: vtysh -c "configure terminal" \