Add Neutron 7.0.0 for Ubuntu 14.04
[openstack-build/neutron-build.git] / trusty / debian / neutron-plugin-linuxbridge-agent.init.in
1 #!/bin/sh
2 ### BEGIN INIT INFO
3 # Provides:          neutron-linuxbridge-agent
4 # Required-Start:    $network $local_fs $remote_fs $syslog
5 # Required-Stop:     $remote_fs
6 # Should-Start:      mysql postgresql rabbitmq-server keystone
7 # Should-Stop:       mysql postgresql rabbitmq-server keystone
8 # Default-Start:     2 3 4 5
9 # Default-Stop:      0 1 6
10 # Short-Description: Neutron LinuxBridge Agent
11 # Description:       Agent to use within neutron linuxbridge client
12 ### END INIT INFO
13
14 # Author: Ghe Rivero <ghe.rivero@stackops.com>
15
16 # PATH should only include /usr/* if it runs after the mountnfs.sh script
17 PATH=/sbin:/usr/sbin:/bin:/usr/bin
18 DESC="Openstack Neutron LinuxBridge Plugin Agent"
19 PROJECT_NAME=neutron
20 NAME=${PROJECT_NAME}-linuxbridge-agent
21 # --config-file=/etc/neutron/neutron.conf will be happened
22 # to DAEMON_ARGS later by openstack-pkg-tools
23
24 # Since Juno LB plugin as been deprecated as core_plugin, it has been
25 # replaced by ml2 as core_plugin and lb as agent. Making ml2 mandatory
26 # to use this agent
27
28 DAEMON=/usr/bin/neutron-linuxbridge-agent
29 DAEMON_ARGS="--config-file=/etc/neutron/plugins/linuxbridge/linuxbridge_conf.ini --config-file=/etc/neutron/plugins/ml2/ml2_conf.ini"
30