summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStig Thormodsrud <stig@vyatta.com>2009-11-02 12:26:18 -0800
committerStig Thormodsrud <stig@vyatta.com>2009-11-02 12:26:18 -0800
commit2fcc29524213090a78fc6b744adabf45932eb81f (patch)
treeb5e265dd318fe02e9eed3394f90e7407d57c33f1
parent6f8eeff91564a4bd8f93f753be45c4c2412282de (diff)
downloadvyatta-cfg-quagga-2fcc29524213090a78fc6b744adabf45932eb81f.tar.gz
vyatta-cfg-quagga-2fcc29524213090a78fc6b744adabf45932eb81f.zip
Fix 5028: BGP password containing special characters not correctly passed to quagga
-rw-r--r--templates/protocols/bgp/node.tag/neighbor/node.tag/password/node.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/protocols/bgp/node.tag/neighbor/node.tag/password/node.def b/templates/protocols/bgp/node.tag/neighbor/node.tag/password/node.def
index 8d83775a..fc7b2110 100644
--- a/templates/protocols/bgp/node.tag/neighbor/node.tag/password/node.def
+++ b/templates/protocols/bgp/node.tag/neighbor/node.tag/password/node.def
@@ -13,7 +13,7 @@ update: if [ -n "$VAR(../remote-as/@)" ]; then
vyatta-vtysh -c "configure terminal" \
-c "router bgp $VAR(../../@)" \
-c "neighbor $VAR(../@) $peer" \
- -c "neighbor $VAR(../@) password $VAR(@)"
+ -c 'neighbor $VAR(../@) password $VAR(@)'
delete: vyatta-vtysh \
-c "configure terminal" -c "router bgp $VAR(../../@)" \
-c "no neighbor $VAR(../@) password"