diff options
author | Robert Bays <robert@vyatta.com> | 2010-07-14 22:15:37 -0700 |
---|---|---|
committer | Robert Bays <robert@vyatta.com> | 2010-07-14 22:15:37 -0700 |
commit | f45107c41e01b2475304e243e25e0f25542395b6 (patch) | |
tree | a2b5556efcde58a39b8c38ac13524e42c2352c48 /templates | |
parent | 3f165e541a87a1983e7adac72d1a58ba2df300fe (diff) | |
download | vyatta-cfg-quagga-f45107c41e01b2475304e243e25e0f25542395b6.tar.gz vyatta-cfg-quagga-f45107c41e01b2475304e243e25e0f25542395b6.zip |
move conditional checks for ttl-security back into the node.def files to keep them from being checked on every commit
Diffstat (limited to 'templates')
-rw-r--r-- | templates/protocols/bgp/node.tag/neighbor/node.tag/ebgp-multihop/node.def | 1 | ||||
-rw-r--r-- | templates/protocols/bgp/node.tag/neighbor/node.tag/ttl-security/hops/node.def | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/templates/protocols/bgp/node.tag/neighbor/node.tag/ebgp-multihop/node.def b/templates/protocols/bgp/node.tag/neighbor/node.tag/ebgp-multihop/node.def index 8a89fc4c..14878cb4 100644 --- a/templates/protocols/bgp/node.tag/neighbor/node.tag/ebgp-multihop/node.def +++ b/templates/protocols/bgp/node.tag/neighbor/node.tag/ebgp-multihop/node.def @@ -3,3 +3,4 @@ help: Allow this EBGP neighbor to not be on a directly connected network comp_help: possible completions: <1-255> number of hops syntax:expression: $VAR(@) >=1 && $VAR(@) <= 255; "ebgp-multihop must be between 1 and 255" +commit:expression: $VAR(../ttl-security/hops/) == ""; "protocols bgp $VAR(../../@) neighbor $VAR(../@) ebgp-multihop: you can't set both ebgp-multihop and ttl-security hops" diff --git a/templates/protocols/bgp/node.tag/neighbor/node.tag/ttl-security/hops/node.def b/templates/protocols/bgp/node.tag/neighbor/node.tag/ttl-security/hops/node.def index c5950865..cd69bde9 100644 --- a/templates/protocols/bgp/node.tag/neighbor/node.tag/ttl-security/hops/node.def +++ b/templates/protocols/bgp/node.tag/neighbor/node.tag/ttl-security/hops/node.def @@ -3,3 +3,4 @@ help: Set number of the maximum number of hops to the BGP peer comp_help: possible completions: <1-254> number of hops syntax:expression: $VAR(@) >=1 && $VAR(@) <= 254; "ttl-security hops must be between 1 and 254" +commit:expression: $VAR(../../ebgp-multihop/) == ""; "protocols bgp $VAR(../../../@) neighbor $VAR(../../@) ttl-security hops: you can't set both ebgp-multihop and ttl-security hops" |