diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-05 16:42:48 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-05 16:42:48 -0800 |
commit | 5db776a29c90d05f864645e7e171840660f4b268 (patch) | |
tree | df8d452272a33ffea3732138c17e8439967e402f /templates/protocols/bgp | |
parent | dc847212c3a95016a315f4aaf3bf3e134d2bbebd (diff) | |
download | vyatta-cfg-quagga-5db776a29c90d05f864645e7e171840660f4b268.tar.gz vyatta-cfg-quagga-5db776a29c90d05f864645e7e171840660f4b268.zip |
Move sudo from vyatta-protocol to nodes
Much cleaner to do sudo once rather than repeatedly
Diffstat (limited to 'templates/protocols/bgp')
-rw-r--r-- | templates/protocols/bgp/node.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/protocols/bgp/node.def b/templates/protocols/bgp/node.def index ca1ae005..ea3a9c4c 100644 --- a/templates/protocols/bgp/node.def +++ b/templates/protocols/bgp/node.def @@ -6,14 +6,14 @@ syntax:expression: $VAR(@) >= 1 && $VAR(@) <= 4294967294 ; \ "AS number must be between 1 and 4294967294" create: if [ $(pgrep -c -x vyatta-bgpd) -eq 0 ] - then ${vyatta_sbindir}/vyatta-protocol start bgpd + then sudo ${vyatta_sbindir}/vyatta-protocol start bgpd fi vyatta-vtysh -c "configure terminal" -c "router bgp $VAR(@)" update: vyatta-vtysh -c "configure terminal" -c "router bgp $VAR(@)" \ -c "bgp network import-check" delete: vyatta-vtysh -c "configure terminal" -c "no router bgp $VAR(@)" if ! ${vyatta_sbindir}/vyatta-check-typeless-node.pl "protocols bgp" - then ${vyatta_sbindir}/vyatta-protocol stop bgpd + then sudo ${vyatta_sbindir}/vyatta-protocol stop bgpd fi |