diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-16 15:25:14 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-16 15:25:14 -0800 |
commit | 5205f4cd0d68a78c86fce6588f9c276861bb9cdd (patch) | |
tree | 130d7894ab217188182b3443228338eafc89e407 /templates/protocols/ripng | |
parent | 9773974965c7b639a125b44be3728d00af48e929 (diff) | |
download | vyatta-cfg-quagga-5205f4cd0d68a78c86fce6588f9c276861bb9cdd.tar.gz vyatta-cfg-quagga-5205f4cd0d68a78c86fce6588f9c276861bb9cdd.zip |
Move daemon start to the disable node
Need way to get daemons started before top level node.
Really a hack because of the way priorities are managed on
node hieararchy
Diffstat (limited to 'templates/protocols/ripng')
-rw-r--r-- | templates/protocols/ripng/disable/node.def | 12 | ||||
-rw-r--r-- | templates/protocols/ripng/node.def | 4 |
2 files changed, 13 insertions, 3 deletions
diff --git a/templates/protocols/ripng/disable/node.def b/templates/protocols/ripng/disable/node.def new file mode 100644 index 00000000..d23c9c5f --- /dev/null +++ b/templates/protocols/ripng/disable/node.def @@ -0,0 +1,12 @@ +type: bool +help: Disable RIPng daemon +default: false +update: if [ $VAR(@) == "true" ]; + then sudo ${vyatta_sbindir}/vyatta-protocol stop ripngd + else sudo ${vyatta_sbindir}/vyatta-protocol start ripngd + fi +possible completions: + true Stop RIPng daemon + false Start RIPng daemon + +allowed: echo "true false" diff --git a/templates/protocols/ripng/node.def b/templates/protocols/ripng/node.def index 73f86c92..61c30b01 100644 --- a/templates/protocols/ripng/node.def +++ b/templates/protocols/ripng/node.def @@ -1,5 +1,3 @@ help: Configure Routing Information Protocol (RIPng) parameters -create: sudo ${vyatta_sbindir}/vyatta-protocol start ripngd - vyatta-vtysh -c "configure terminal" -c "router ripng" +create: vyatta-vtysh -c "configure terminal" -c "router ripng" delete: vyatta-vtysh -c "configure terminal" -c "no router ripng" - sudo ${vyatta_sbindir}/vyatta-protocol stop ripngd |