diff options
author | Robert Bays <robert@vyatta.com> | 2010-07-12 11:43:41 -0700 |
---|---|---|
committer | Robert Bays <robert@vyatta.com> | 2010-07-12 11:43:41 -0700 |
commit | 5ef2ee5dba2482d0ef6fc7fd8b94596d4061af81 (patch) | |
tree | 09eb153381fd5dfff9f1d07f3e140b8bea5add14 | |
parent | a81b8bb2595fa54f5ef03bc02631913f40d86f32 (diff) | |
download | vyatta-cfg-quagga-5ef2ee5dba2482d0ef6fc7fd8b94596d4061af81.tar.gz vyatta-cfg-quagga-5ef2ee5dba2482d0ef6fc7fd8b94596d4061af81.zip |
fix for bug 5810
-rw-r--r-- | templates/protocols/bgp/node.tag/neighbor/node.tag/disable-send-community/node.def | 2 | ||||
-rw-r--r-- | templates/protocols/bgp/node.tag/peer-group/node.tag/disable-send-community/node.def | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/protocols/bgp/node.tag/neighbor/node.tag/disable-send-community/node.def b/templates/protocols/bgp/node.tag/neighbor/node.tag/disable-send-community/node.def index c760705e..b0b6bcca 100644 --- a/templates/protocols/bgp/node.tag/neighbor/node.tag/disable-send-community/node.def +++ b/templates/protocols/bgp/node.tag/neighbor/node.tag/disable-send-community/node.def @@ -1,2 +1,2 @@ help: Set to not send community attributes to this neighbor -commit:expression: ($VAR(./extended/) != "") || ($VAR(./standard/) != ""); "protocols bgp $(../../@) neighbor $(../@): you must specify the type of community" +commit:expression: ($VAR(./extended/) != "") || ($VAR(./standard/) != ""); "protocols bgp $VAR(../../@) neighbor $VAR(../@): you must specify the type of community" diff --git a/templates/protocols/bgp/node.tag/peer-group/node.tag/disable-send-community/node.def b/templates/protocols/bgp/node.tag/peer-group/node.tag/disable-send-community/node.def index 7dbad897..8c75e619 100644 --- a/templates/protocols/bgp/node.tag/peer-group/node.tag/disable-send-community/node.def +++ b/templates/protocols/bgp/node.tag/peer-group/node.tag/disable-send-community/node.def @@ -1,2 +1,2 @@ help: Set to not send community attributes to this peer-group -commit:expression: ($VAR(./extended/) != "") || ($VAR(./standard/) != ""); "protocols bgp $(../../@) peer-group $(../@): you must specify the type of community" +commit:expression: ($VAR(./extended/) != "") || ($VAR(./standard/) != ""); "protocols bgp $VAR(../../@) peer-group $VAR(../@): you must specify the type of community" |