blob: 68c05398744acbb631483383854420b01446ed98 [file] [log] [blame]
Salvatore Orlandod6767d02012-08-31 04:55:20 -07001# lib/quantum
2# functions - funstions specific to quantum
3
Dean Troyer60e9c0a2012-12-06 15:52:52 -06004# Dependencies:
5# ``functions`` file
6# ``DEST`` must be defined
7
Akihiro MOTOKI66afb472012-12-21 15:34:13 +09008# ``stack.sh`` calls the entry points in this order:
9#
10# install_quantum
11# install_quantumclient
12# install_quantum_agent_packages
13# install_quantum_third_party
Akihiro MOTOKI66afb472012-12-21 15:34:13 +090014# configure_quantum
15# init_quantum
16# configure_quantum_third_party
17# init_quantum_third_party
18# start_quantum_third_party
19# create_nova_conf_quantum
20# start_quantum_service_and_check
21# create_quantum_initial_network
22# setup_quantum_debug
23# start_quantum_agents
24#
25# ``unstack.sh`` calls the entry points in this order:
26#
27# stop_quantum
28
29# Functions in lib/quantum are classified into the following categories:
30#
31# - entry points (called from stack.sh or unstack.sh)
32# - internal functions
33# - quantum exercises
34# - 3rd party programs
35
Dean Troyer60e9c0a2012-12-06 15:52:52 -060036
37# Quantum Networking
38# ------------------
39
40# Make sure that quantum is enabled in ``ENABLED_SERVICES``. If you want
41# to run Quantum on this host, make sure that q-svc is also in
42# ``ENABLED_SERVICES``.
43#
44# If you're planning to use the Quantum openvswitch plugin, set
45# ``Q_PLUGIN`` to "openvswitch" and make sure the q-agt service is enabled
46# in ``ENABLED_SERVICES``. If you're planning to use the Quantum
47# linuxbridge plugin, set ``Q_PLUGIN`` to "linuxbridge" and make sure the
48# q-agt service is enabled in ``ENABLED_SERVICES``.
49#
50# See "Quantum Network Configuration" below for additional variables
51# that must be set in localrc for connectivity across hosts with
52# Quantum.
53#
Dean Troyerb3236912013-03-17 15:17:05 -050054# With Quantum networking the NETWORK_MANAGER variable is ignored.
Dean Troyer60e9c0a2012-12-06 15:52:52 -060055
56
Salvatore Orlandod6767d02012-08-31 04:55:20 -070057# Save trace setting
58XTRACE=$(set +o | grep xtrace)
59set +o xtrace
60
Dean Troyer60e9c0a2012-12-06 15:52:52 -060061
Akihiro MOTOKI66afb472012-12-21 15:34:13 +090062# Quantum Network Configuration
63# -----------------------------
Dean Troyer60e9c0a2012-12-06 15:52:52 -060064
65# Set up default directories
Nachi Ueno8bc21f62012-11-19 22:04:28 -080066QUANTUM_DIR=$DEST/quantum
Dean Troyer60e9c0a2012-12-06 15:52:52 -060067QUANTUMCLIENT_DIR=$DEST/python-quantumclient
Gary Kotton9343df12012-11-28 10:05:53 +000068QUANTUM_AUTH_CACHE_DIR=${QUANTUM_AUTH_CACHE_DIR:-/var/cache/quantum}
Nachi Ueno5db5bfa2012-10-29 11:25:29 -070069
Dean Troyer60e9c0a2012-12-06 15:52:52 -060070QUANTUM_CONF_DIR=/etc/quantum
71QUANTUM_CONF=$QUANTUM_CONF_DIR/quantum.conf
72export QUANTUM_TEST_CONFIG_FILE=${QUANTUM_TEST_CONFIG_FILE:-"$QUANTUM_CONF_DIR/debug.ini"}
73
74# Default Quantum Plugin
75Q_PLUGIN=${Q_PLUGIN:-openvswitch}
76# Default Quantum Port
77Q_PORT=${Q_PORT:-9696}
78# Default Quantum Host
79Q_HOST=${Q_HOST:-$HOST_IP}
Dean Troyer60e9c0a2012-12-06 15:52:52 -060080# Default admin username
81Q_ADMIN_USERNAME=${Q_ADMIN_USERNAME:-quantum}
82# Default auth strategy
83Q_AUTH_STRATEGY=${Q_AUTH_STRATEGY:-keystone}
84# Use namespace or not
85Q_USE_NAMESPACE=${Q_USE_NAMESPACE:-True}
86Q_USE_ROOTWRAP=${Q_USE_ROOTWRAP:-True}
87# Meta data IP
88Q_META_DATA_IP=${Q_META_DATA_IP:-$HOST_IP}
Akihiro MOTOKI66afb472012-12-21 15:34:13 +090089# Allow Overlapping IP among subnets
Salvatore Orlandod1742fe2013-03-07 13:34:57 +010090Q_ALLOW_OVERLAPPING_IP=${Q_ALLOW_OVERLAPPING_IP:-True}
Dean Troyer60e9c0a2012-12-06 15:52:52 -060091# Use quantum-debug command
92Q_USE_DEBUG_COMMAND=${Q_USE_DEBUG_COMMAND:-False}
Maru Newby31c94ab2012-12-19 03:59:20 +000093# The name of the default q-l3 router
94Q_ROUTER_NAME=${Q_ROUTER_NAME:-router1}
Dean Troyer60e9c0a2012-12-06 15:52:52 -060095
Nachi Ueno8bc21f62012-11-19 22:04:28 -080096if is_service_enabled quantum; then
Dean Troyer60e9c0a2012-12-06 15:52:52 -060097 Q_RR_CONF_FILE=$QUANTUM_CONF_DIR/rootwrap.conf
Nachi Ueno8bc21f62012-11-19 22:04:28 -080098 if [[ "$Q_USE_ROOTWRAP" == "False" ]]; then
99 Q_RR_COMMAND="sudo"
100 else
Nachi Uenoeb1aa3d2012-12-06 11:55:29 -0800101 QUANTUM_ROOTWRAP=$(get_rootwrap_location quantum)
102 Q_RR_COMMAND="sudo $QUANTUM_ROOTWRAP $Q_RR_CONF_FILE"
Nachi Ueno8bc21f62012-11-19 22:04:28 -0800103 fi
Nachi Ueno8bc21f62012-11-19 22:04:28 -0800104
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900105 # Provider Network Configurations
106 # --------------------------------
107
108 # The following variables control the Quantum openvswitch and
109 # linuxbridge plugins' allocation of tenant networks and
110 # availability of provider networks. If these are not configured
111 # in localrc, tenant networks will be local to the host (with no
112 # remote connectivity), and no physical resources will be
113 # available for the allocation of provider networks.
114
115 # To use GRE tunnels for tenant networks, set to True in
116 # localrc. GRE tunnels are only supported by the openvswitch
117 # plugin, and currently only on Ubuntu.
118 ENABLE_TENANT_TUNNELS=${ENABLE_TENANT_TUNNELS:-False}
119
120 # If using GRE tunnels for tenant networks, specify the range of
121 # tunnel IDs from which tenant networks are allocated. Can be
122 # overriden in localrc in necesssary.
123 TENANT_TUNNEL_RANGES=${TENANT_TUNNEL_RANGE:-1:1000}
124
125 # To use VLANs for tenant networks, set to True in localrc. VLANs
126 # are supported by the openvswitch and linuxbridge plugins, each
127 # requiring additional configuration described below.
128 ENABLE_TENANT_VLANS=${ENABLE_TENANT_VLANS:-False}
129
130 # If using VLANs for tenant networks, set in localrc to specify
131 # the range of VLAN VIDs from which tenant networks are
132 # allocated. An external network switch must be configured to
133 # trunk these VLANs between hosts for multi-host connectivity.
134 #
135 # Example: ``TENANT_VLAN_RANGE=1000:1999``
136 TENANT_VLAN_RANGE=${TENANT_VLAN_RANGE:-}
137
138 # If using VLANs for tenant networks, or if using flat or VLAN
139 # provider networks, set in localrc to the name of the physical
140 # network, and also configure OVS_PHYSICAL_BRIDGE for the
141 # openvswitch agent or LB_PHYSICAL_INTERFACE for the linuxbridge
142 # agent, as described below.
143 #
144 # Example: ``PHYSICAL_NETWORK=default``
145 PHYSICAL_NETWORK=${PHYSICAL_NETWORK:-}
146
147 # With the openvswitch plugin, if using VLANs for tenant networks,
148 # or if using flat or VLAN provider networks, set in localrc to
149 # the name of the OVS bridge to use for the physical network. The
150 # bridge will be created if it does not already exist, but a
151 # physical interface must be manually added to the bridge as a
152 # port for external connectivity.
153 #
154 # Example: ``OVS_PHYSICAL_BRIDGE=br-eth1``
155 OVS_PHYSICAL_BRIDGE=${OVS_PHYSICAL_BRIDGE:-}
156
157 # With the linuxbridge plugin, if using VLANs for tenant networks,
158 # or if using flat or VLAN provider networks, set in localrc to
159 # the name of the network interface to use for the physical
160 # network.
161 #
162 # Example: ``LB_PHYSICAL_INTERFACE=eth1``
163 LB_PHYSICAL_INTERFACE=${LB_PHYSICAL_INTERFACE:-}
164
165 # With the openvswitch plugin, set to True in localrc to enable
166 # provider GRE tunnels when ``ENABLE_TENANT_TUNNELS`` is False.
167 #
168 # Example: ``OVS_ENABLE_TUNNELING=True``
169 OVS_ENABLE_TUNNELING=${OVS_ENABLE_TUNNELING:-$ENABLE_TENANT_TUNNELS}
170fi
Dean Troyer60e9c0a2012-12-06 15:52:52 -0600171
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900172# Quantum plugin specific functions
173# ---------------------------------
174# Please refer to lib/quantum_plugins/README.md for details.
175source $TOP_DIR/lib/quantum_plugins/$Q_PLUGIN
176
Eugene Nikanorovb7d82842013-03-06 16:28:33 +0400177# Agent loadbalancer service plugin functions
178# -------------------------------------------
179# Hardcoding for 1 service plugin for now
Akihiro MOTOKIc07112a2013-03-22 16:35:38 +0900180source $TOP_DIR/lib/quantum_plugins/services/agent_loadbalancer
Eugene Nikanorovb7d82842013-03-06 16:28:33 +0400181
Akihiro MOTOKI3452f8e2013-03-21 14:11:27 +0900182# Use security group or not
183if has_quantum_plugin_security_group; then
184 Q_USE_SECGROUP=${Q_USE_SECGROUP:-True}
185else
186 Q_USE_SECGROUP=False
187fi
188
Dean Troyer60e9c0a2012-12-06 15:52:52 -0600189# Entry Points
190# ------------
191
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900192# configure_quantum()
193# Set common config for all quantum server and agents.
194function configure_quantum() {
195 _configure_quantum_common
Akihiro MOTOKIb0f1c382013-01-13 17:58:12 +0900196 iniset_rpc_backend quantum $QUANTUM_CONF DEFAULT
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900197
Eugene Nikanorovb7d82842013-03-06 16:28:33 +0400198 # goes before q-svc to init Q_SERVICE_PLUGIN_CLASSES
199 if is_service_enabled q-lbaas; then
200 _configure_quantum_lbaas
201 fi
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900202 if is_service_enabled q-svc; then
203 _configure_quantum_service
204 fi
205 if is_service_enabled q-agt; then
206 _configure_quantum_plugin_agent
207 fi
208 if is_service_enabled q-dhcp; then
209 _configure_quantum_dhcp_agent
210 fi
211 if is_service_enabled q-l3; then
212 _configure_quantum_l3_agent
213 fi
214 if is_service_enabled q-meta; then
215 _configure_quantum_metadata_agent
216 fi
217
218 _configure_quantum_debug_command
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900219}
220
221function create_nova_conf_quantum() {
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800222 iniset $NOVA_CONF DEFAULT network_api_class "nova.network.quantumv2.api.API"
223 iniset $NOVA_CONF DEFAULT quantum_admin_username "$Q_ADMIN_USERNAME"
224 iniset $NOVA_CONF DEFAULT quantum_admin_password "$SERVICE_PASSWORD"
225 iniset $NOVA_CONF DEFAULT quantum_admin_auth_url "$KEYSTONE_SERVICE_PROTOCOL://$KEYSTONE_SERVICE_HOST:$KEYSTONE_AUTH_PORT/v2.0"
226 iniset $NOVA_CONF DEFAULT quantum_auth_strategy "$Q_AUTH_STRATEGY"
227 iniset $NOVA_CONF DEFAULT quantum_admin_tenant_name "$SERVICE_TENANT_NAME"
228 iniset $NOVA_CONF DEFAULT quantum_url "http://$Q_HOST:$Q_PORT"
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900229
Akihiro MOTOKI3452f8e2013-03-21 14:11:27 +0900230 if [[ "$Q_USE_SECGROUP" == "True" ]]; then
231 LIBVIRT_FIREWALL_DRIVER=nova.virt.firewall.NoopFirewallDriver
232 iniset $NOVA_CONF DEFAULT security_group_api quantum
233 fi
234
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900235 # set NOVA_VIF_DRIVER and optionally set options in nova_conf
236 quantum_plugin_create_nova_conf
237
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800238 iniset $NOVA_CONF DEFAULT libvirt_vif_driver "$NOVA_VIF_DRIVER"
239 iniset $NOVA_CONF DEFAULT linuxnet_interface_driver "$LINUXNET_VIF_DRIVER"
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900240 if is_service_enabled q-meta; then
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800241 iniset $NOVA_CONF DEFAULT service_quantum_metadata_proxy "True"
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900242 fi
243}
244
245# create_quantum_accounts() - Set up common required quantum accounts
246
247# Tenant User Roles
248# ------------------------------------------------------------------
249# service quantum admin # if enabled
250
251# Migrated from keystone_data.sh
252function create_quantum_accounts() {
253
254 SERVICE_TENANT=$(keystone tenant-list | awk "/ $SERVICE_TENANT_NAME / { print \$2 }")
255 ADMIN_ROLE=$(keystone role-list | awk "/ admin / { print \$2 }")
256
257 if [[ "$ENABLED_SERVICES" =~ "q-svc" ]]; then
258 QUANTUM_USER=$(keystone user-create \
259 --name=quantum \
260 --pass="$SERVICE_PASSWORD" \
261 --tenant_id $SERVICE_TENANT \
262 --email=quantum@example.com \
263 | grep " id " | get_field 2)
264 keystone user-role-add \
265 --tenant_id $SERVICE_TENANT \
266 --user_id $QUANTUM_USER \
267 --role_id $ADMIN_ROLE
268 if [[ "$KEYSTONE_CATALOG_BACKEND" = 'sql' ]]; then
269 QUANTUM_SERVICE=$(keystone service-create \
270 --name=quantum \
271 --type=network \
272 --description="Quantum Service" \
273 | grep " id " | get_field 2)
274 keystone endpoint-create \
275 --region RegionOne \
276 --service_id $QUANTUM_SERVICE \
277 --publicurl "http://$SERVICE_HOST:9696/" \
278 --adminurl "http://$SERVICE_HOST:9696/" \
279 --internalurl "http://$SERVICE_HOST:9696/"
280 fi
281 fi
282}
283
284function create_quantum_initial_network() {
285 TENANT_ID=$(keystone tenant-list | grep " demo " | get_field 1)
286
287 # Create a small network
288 # Since quantum command is executed in admin context at this point,
289 # ``--tenant_id`` needs to be specified.
Devananda van der Veen37a8d152013-01-15 17:27:34 -0800290 if is_baremetal; then
291 sudo ovs-vsctl add-port $OVS_PHYSICAL_BRIDGE $PUBLIC_INTERFACE
292 for IP in $(ip addr show dev $PUBLIC_INTERFACE | grep ' inet ' | awk '{print $2}'); do
293 sudo ip addr del $IP dev $PUBLIC_INTERFACE
294 sudo ip addr add $IP dev $OVS_PHYSICAL_BRIDGE
295 done
296 NET_ID=$(quantum net-create $PHYSICAL_NETWORK --tenant_id $TENANT_ID --provider:network_type flat --provider:physical_network "$PHYSICAL_NETWORK" | grep ' id ' | get_field 2)
297 SUBNET_ID=$(quantum subnet-create --tenant_id $TENANT_ID --ip_version 4 ${ALLOCATION_POOL:+--allocation-pool $ALLOCATION_POOL} --gateway $NETWORK_GATEWAY $NET_ID $FIXED_RANGE | grep ' id ' | get_field 2)
298 sudo ifconfig $OVS_PHYSICAL_BRIDGE up
299 else
300 NET_ID=$(quantum net-create --tenant_id $TENANT_ID "$PRIVATE_NETWORK_NAME" | grep ' id ' | get_field 2)
301 SUBNET_ID=$(quantum subnet-create --tenant_id $TENANT_ID --ip_version 4 --gateway $NETWORK_GATEWAY $NET_ID $FIXED_RANGE | grep ' id ' | get_field 2)
302 fi
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900303
Dan Wendlandt555ecd02013-02-23 23:07:07 -0800304 if [[ "$Q_L3_ENABLED" == "True" ]]; then
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900305 # Create a router, and add the private subnet as one of its interfaces
Dan Wendlandt555ecd02013-02-23 23:07:07 -0800306 if [[ "$Q_L3_ROUTER_PER_TENANT" == "True" ]]; then
307 # create a tenant-owned router.
Maru Newby31c94ab2012-12-19 03:59:20 +0000308 ROUTER_ID=$(quantum router-create --tenant_id $TENANT_ID $Q_ROUTER_NAME | grep ' id ' | get_field 2)
309 else
Dan Wendlandt555ecd02013-02-23 23:07:07 -0800310 # Plugin only supports creating a single router, which should be admin owned.
Maru Newby31c94ab2012-12-19 03:59:20 +0000311 ROUTER_ID=$(quantum router-create $Q_ROUTER_NAME | grep ' id ' | get_field 2)
312 fi
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900313 quantum router-interface-add $ROUTER_ID $SUBNET_ID
314 # Create an external network, and a subnet. Configure the external network as router gw
315 EXT_NET_ID=$(quantum net-create "$PUBLIC_NETWORK_NAME" -- --router:external=True | grep ' id ' | get_field 2)
Stephen Ma8396d4f2013-02-18 05:32:59 -0800316 EXT_GW_IP=$(quantum subnet-create --ip_version 4 ${Q_FLOATING_ALLOCATION_POOL:+--allocation-pool $Q_FLOATING_ALLOCATION_POOL} $EXT_NET_ID $FLOATING_RANGE -- --enable_dhcp=False | grep 'gateway_ip' | get_field 2)
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900317 quantum router-gateway-set $ROUTER_ID $EXT_NET_ID
318
Dan Wendlandt555ecd02013-02-23 23:07:07 -0800319 if is_service_enabled q-l3; then
320 # logic is specific to using the l3-agent for l3
321 if is_quantum_ovs_base_plugin && [[ "$Q_USE_NAMESPACE" = "True" ]]; then
322 CIDR_LEN=${FLOATING_RANGE#*/}
323 sudo ip addr add $EXT_GW_IP/$CIDR_LEN dev $PUBLIC_BRIDGE
324 sudo ip link set $PUBLIC_BRIDGE up
325 ROUTER_GW_IP=`quantum port-list -c fixed_ips -c device_owner | grep router_gateway | awk -F '"' '{ print $8; }'`
326 sudo route add -net $FIXED_RANGE gw $ROUTER_GW_IP
327 fi
328 if [[ "$Q_USE_NAMESPACE" == "False" ]]; then
329 # Explicitly set router id in l3 agent configuration
330 iniset $Q_L3_CONF_FILE DEFAULT router_id $ROUTER_ID
331 fi
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900332 fi
333 fi
334}
335
336# init_quantum() - Initialize databases, etc.
337function init_quantum() {
338 :
339}
340
341# install_quantum() - Collect source and prepare
342function install_quantum() {
343 git_clone $QUANTUM_REPO $QUANTUM_DIR $QUANTUM_BRANCH
Dean Troyerfe51a902013-04-01 15:48:44 -0500344 setup_develop $QUANTUM_DIR
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900345}
346
347# install_quantumclient() - Collect source and prepare
348function install_quantumclient() {
349 git_clone $QUANTUMCLIENT_REPO $QUANTUMCLIENT_DIR $QUANTUMCLIENT_BRANCH
Dean Troyerfe51a902013-04-01 15:48:44 -0500350 setup_develop $QUANTUMCLIENT_DIR
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900351}
352
353# install_quantum_agent_packages() - Collect source and prepare
354function install_quantum_agent_packages() {
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900355 # install packages that is specific to plugin agent
356 quantum_plugin_install_agent_packages
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900357}
358
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900359# Start running processes, including screen
360function start_quantum_service_and_check() {
361 # Start the Quantum service
362 screen_it q-svc "cd $QUANTUM_DIR && python $QUANTUM_DIR/bin/quantum-server --config-file $QUANTUM_CONF --config-file /$Q_PLUGIN_CONF_FILE"
363 echo "Waiting for Quantum to start..."
Aaron Rosen0ae742c2013-02-21 12:10:30 -0800364 if ! timeout $SERVICE_TIMEOUT sh -c "while ! http_proxy= wget -q -O- http://$Q_HOST:$Q_PORT; do sleep 1; done"; then
Nachi Ueno07115eb2013-02-26 12:38:18 -0800365 die $LINENO "Quantum did not start"
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900366 fi
367}
368
369# Start running processes, including screen
370function start_quantum_agents() {
371 # Start up the quantum agents if enabled
Dean Troyer58ab9292013-03-19 15:39:47 -0500372 screen_it q-agt "cd $QUANTUM_DIR && python $AGENT_BINARY --config-file $QUANTUM_CONF --config-file /$Q_PLUGIN_CONF_FILE"
373 screen_it q-dhcp "cd $QUANTUM_DIR && python $AGENT_DHCP_BINARY --config-file $QUANTUM_CONF --config-file=$Q_DHCP_CONF_FILE"
374 screen_it q-l3 "cd $QUANTUM_DIR && python $AGENT_L3_BINARY --config-file $QUANTUM_CONF --config-file=$Q_L3_CONF_FILE"
375 screen_it q-meta "cd $QUANTUM_DIR && python $AGENT_META_BINARY --config-file $QUANTUM_CONF --config-file=$Q_META_CONF_FILE"
Eugene Nikanorovb7d82842013-03-06 16:28:33 +0400376
377 if is_service_enabled q-lbaas; then
Dean Troyer58ab9292013-03-19 15:39:47 -0500378 screen_it q-lbaas "cd $QUANTUM_DIR && python $AGENT_LBAAS_BINARY --config-file $QUANTUM_CONF --config-file=$LBAAS_AGENT_CONF_FILENAME"
Eugene Nikanorovb7d82842013-03-06 16:28:33 +0400379 fi
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900380}
381
382# stop_quantum() - Stop running processes (non-screen)
383function stop_quantum() {
384 if is_service_enabled q-dhcp; then
385 pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }')
386 [ ! -z "$pid" ] && sudo kill -9 $pid
387 fi
388}
389
Dean Troyer995eb922013-03-07 16:11:40 -0600390# cleanup_quantum() - Remove residual data files, anything left over from previous
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900391# runs that a clean run would need to clean up
Dean Troyer995eb922013-03-07 16:11:40 -0600392function cleanup_quantum() {
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900393 :
394}
395
396# _configure_quantum_common()
397# Set common config for all quantum server and agents.
398# This MUST be called before other _configure_quantum_* functions.
399function _configure_quantum_common() {
400 # Put config files in ``QUANTUM_CONF_DIR`` for everyone to find
401 if [[ ! -d $QUANTUM_CONF_DIR ]]; then
402 sudo mkdir -p $QUANTUM_CONF_DIR
403 fi
Attila Fazekas91b8d132013-01-06 22:40:09 +0100404 sudo chown $STACK_USER $QUANTUM_CONF_DIR
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900405
406 cp $QUANTUM_DIR/etc/quantum.conf $QUANTUM_CONF
407
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900408 # set plugin-specific variables
409 # Q_PLUGIN_CONF_PATH, Q_PLUGIN_CONF_FILENAME, Q_DB_NAME, Q_PLUGIN_CLASS
410 quantum_plugin_configure_common
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900411
412 if [[ $Q_PLUGIN_CONF_PATH == '' || $Q_PLUGIN_CONF_FILENAME == '' || $Q_PLUGIN_CLASS == '' ]]; then
Nachi Ueno07115eb2013-02-26 12:38:18 -0800413 die $LINENO "Quantum plugin not set.. exiting"
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900414 fi
415
416 # If needed, move config file from ``$QUANTUM_DIR/etc/quantum`` to ``QUANTUM_CONF_DIR``
417 mkdir -p /$Q_PLUGIN_CONF_PATH
418 Q_PLUGIN_CONF_FILE=$Q_PLUGIN_CONF_PATH/$Q_PLUGIN_CONF_FILENAME
419 cp $QUANTUM_DIR/$Q_PLUGIN_CONF_FILE /$Q_PLUGIN_CONF_FILE
420
Attila Fazekas7e79d912013-03-03 12:23:04 +0100421 iniset /$Q_PLUGIN_CONF_FILE DATABASE sql_connection `database_connection_url $Q_DB_NAME`
mathieu-rohoncf9c10d2013-03-18 17:34:03 +0100422 iniset $QUANTUM_CONF DEFAULT state_path $DATA_DIR/quantum
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900423
424 _quantum_setup_rootwrap
425}
426
427function _configure_quantum_debug_command() {
428 if [[ "$Q_USE_DEBUG_COMMAND" != "True" ]]; then
429 return
430 fi
431
432 cp $QUANTUM_DIR/etc/l3_agent.ini $QUANTUM_TEST_CONFIG_FILE
433
434 iniset $QUANTUM_TEST_CONFIG_FILE DEFAULT verbose False
435 iniset $QUANTUM_TEST_CONFIG_FILE DEFAULT debug False
436 iniset $QUANTUM_TEST_CONFIG_FILE DEFAULT use_namespaces $Q_USE_NAMESPACE
437 iniset $QUANTUM_TEST_CONFIG_FILE DEFAULT root_helper "$Q_RR_COMMAND"
Gary Kottond9ca2b22013-01-30 13:52:43 +0000438 # Intermediate fix until Quantum patch lands and then line above will
439 # be cleaned.
440 iniset $QUANTUM_TEST_CONFIG_FILE AGENT root_helper "$Q_RR_COMMAND"
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900441
442 _quantum_setup_keystone $QUANTUM_TEST_CONFIG_FILE DEFAULT set_auth_url
443 _quantum_setup_interface_driver $QUANTUM_TEST_CONFIG_FILE
444
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900445 quantum_plugin_configure_debug_command
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900446}
447
448function _configure_quantum_dhcp_agent() {
449 AGENT_DHCP_BINARY="$QUANTUM_DIR/bin/quantum-dhcp-agent"
450 Q_DHCP_CONF_FILE=$QUANTUM_CONF_DIR/dhcp_agent.ini
451
452 cp $QUANTUM_DIR/etc/dhcp_agent.ini $Q_DHCP_CONF_FILE
453
454 iniset $Q_DHCP_CONF_FILE DEFAULT verbose True
455 iniset $Q_DHCP_CONF_FILE DEFAULT debug True
456 iniset $Q_DHCP_CONF_FILE DEFAULT use_namespaces $Q_USE_NAMESPACE
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900457 iniset $Q_DHCP_CONF_FILE DEFAULT root_helper "$Q_RR_COMMAND"
458
459 _quantum_setup_keystone $Q_DHCP_CONF_FILE DEFAULT set_auth_url
460 _quantum_setup_interface_driver $Q_DHCP_CONF_FILE
461
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900462 quantum_plugin_configure_dhcp_agent
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900463}
464
465function _configure_quantum_l3_agent() {
Dan Wendlandt555ecd02013-02-23 23:07:07 -0800466 Q_L3_ENABLED=True
467 # for l3-agent, only use per tenant router if we have namespaces
468 Q_L3_ROUTER_PER_TENANT=$Q_USE_NAMESPACE
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900469 AGENT_L3_BINARY="$QUANTUM_DIR/bin/quantum-l3-agent"
470 PUBLIC_BRIDGE=${PUBLIC_BRIDGE:-br-ex}
471 Q_L3_CONF_FILE=$QUANTUM_CONF_DIR/l3_agent.ini
472
473 cp $QUANTUM_DIR/etc/l3_agent.ini $Q_L3_CONF_FILE
474
475 iniset $Q_L3_CONF_FILE DEFAULT verbose True
476 iniset $Q_L3_CONF_FILE DEFAULT debug True
477 iniset $Q_L3_CONF_FILE DEFAULT use_namespaces $Q_USE_NAMESPACE
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900478 iniset $Q_L3_CONF_FILE DEFAULT root_helper "$Q_RR_COMMAND"
479
480 _quantum_setup_keystone $Q_L3_CONF_FILE DEFAULT set_auth_url
481 _quantum_setup_interface_driver $Q_L3_CONF_FILE
482
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900483 quantum_plugin_configure_l3_agent
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900484}
485
486function _configure_quantum_metadata_agent() {
487 AGENT_META_BINARY="$QUANTUM_DIR/bin/quantum-metadata-agent"
488 Q_META_CONF_FILE=$QUANTUM_CONF_DIR/metadata_agent.ini
489
490 cp $QUANTUM_DIR/etc/metadata_agent.ini $Q_META_CONF_FILE
491
492 iniset $Q_META_CONF_FILE DEFAULT verbose True
493 iniset $Q_META_CONF_FILE DEFAULT debug True
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900494 iniset $Q_META_CONF_FILE DEFAULT nova_metadata_ip $Q_META_DATA_IP
495 iniset $Q_META_CONF_FILE DEFAULT root_helper "$Q_RR_COMMAND"
496
497 _quantum_setup_keystone $Q_META_CONF_FILE DEFAULT set_auth_url
498}
499
Eugene Nikanorovb7d82842013-03-06 16:28:33 +0400500function _configure_quantum_lbaas()
501{
502 quantum_agent_lbaas_install_agent_packages
503 quantum_agent_lbaas_configure_common
504 quantum_agent_lbaas_configure_agent
505}
506
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900507# _configure_quantum_plugin_agent() - Set config files for quantum plugin agent
508# It is called when q-agt is enabled.
509function _configure_quantum_plugin_agent() {
Maru Newby2298ca42012-10-25 23:46:42 +0000510 # Specify the default root helper prior to agent configuration to
Gary Kotton98e18e92013-01-28 14:26:56 +0000511 # ensure that an agent's configuration can override the default
Maru Newby2298ca42012-10-25 23:46:42 +0000512 iniset /$Q_PLUGIN_CONF_FILE AGENT root_helper "$Q_RR_COMMAND"
513
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900514 # Configure agent for plugin
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900515 quantum_plugin_configure_plugin_agent
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900516}
517
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900518# _configure_quantum_service() - Set config files for quantum service
519# It is called when q-svc is enabled.
520function _configure_quantum_service() {
521 Q_API_PASTE_FILE=$QUANTUM_CONF_DIR/api-paste.ini
522 Q_POLICY_FILE=$QUANTUM_CONF_DIR/policy.json
523
524 cp $QUANTUM_DIR/etc/api-paste.ini $Q_API_PASTE_FILE
525 cp $QUANTUM_DIR/etc/policy.json $Q_POLICY_FILE
526
527 if is_service_enabled $DATABASE_BACKENDS; then
528 recreate_database $Q_DB_NAME utf8
529 else
Nachi Ueno07115eb2013-02-26 12:38:18 -0800530 die $LINENO "A database must be enabled in order to use the $Q_PLUGIN Quantum plugin."
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900531 fi
532
533 # Update either configuration file with plugin
534 iniset $QUANTUM_CONF DEFAULT core_plugin $Q_PLUGIN_CLASS
535
Eugene Nikanorovb7d82842013-03-06 16:28:33 +0400536 if [[ $Q_SERVICE_PLUGIN_CLASSES != '' ]]; then
537 iniset $QUANTUM_CONF DEFAULT service_plugins $Q_SERVICE_PLUGIN_CLASSES
538 fi
539
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900540 iniset $QUANTUM_CONF DEFAULT verbose True
541 iniset $QUANTUM_CONF DEFAULT debug True
Salvatore Orlando3de02e82013-03-12 15:12:12 +0100542 iniset $QUANTUM_CONF DEFAULT policy_file $Q_POLICY_FILE
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900543 iniset $QUANTUM_CONF DEFAULT allow_overlapping_ips $Q_ALLOW_OVERLAPPING_IP
544
545 iniset $QUANTUM_CONF DEFAULT auth_strategy $Q_AUTH_STRATEGY
Akihiro MOTOKI712feb62013-02-11 23:45:19 +0900546 _quantum_setup_keystone $QUANTUM_CONF keystone_authtoken
547 # Comment out keystone authtoken configuration in api-paste.ini
548 # It is required to avoid any breakage in Quantum where the sample
549 # api-paste.ini has authtoken configurations.
550 _quantum_commentout_keystone_authtoken $Q_API_PASTE_FILE filter:authtoken
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900551
552 # Configure plugin
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900553 quantum_plugin_configure_service
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900554}
555
556# Utility Functions
557#------------------
558
559# _quantum_setup_rootwrap() - configure Quantum's rootwrap
560function _quantum_setup_rootwrap() {
Nachi Uenoeb1aa3d2012-12-06 11:55:29 -0800561 if [[ "$Q_USE_ROOTWRAP" == "False" ]]; then
562 return
563 fi
564 # Deploy new rootwrap filters files (owned by root).
565 # Wipe any existing rootwrap.d files first
Dean Troyer60e9c0a2012-12-06 15:52:52 -0600566 Q_CONF_ROOTWRAP_D=$QUANTUM_CONF_DIR/rootwrap.d
Nachi Uenoeb1aa3d2012-12-06 11:55:29 -0800567 if [[ -d $Q_CONF_ROOTWRAP_D ]]; then
568 sudo rm -rf $Q_CONF_ROOTWRAP_D
569 fi
Dean Troyer60e9c0a2012-12-06 15:52:52 -0600570 # Deploy filters to $QUANTUM_CONF_DIR/rootwrap.d
Nachi Uenoeb1aa3d2012-12-06 11:55:29 -0800571 mkdir -p -m 755 $Q_CONF_ROOTWRAP_D
572 cp -pr $QUANTUM_DIR/etc/quantum/rootwrap.d/* $Q_CONF_ROOTWRAP_D/
573 sudo chown -R root:root $Q_CONF_ROOTWRAP_D
574 sudo chmod 644 $Q_CONF_ROOTWRAP_D/*
Dean Troyer60e9c0a2012-12-06 15:52:52 -0600575 # Set up rootwrap.conf, pointing to $QUANTUM_CONF_DIR/rootwrap.d
Dirk Mueller13aab252013-03-18 18:55:09 +0100576 # location moved in newer versions, prefer new location
577 if test -r $QUANTUM_DIR/etc/quantum/rootwrap.conf; then
578 sudo cp -p $QUANTUM_DIR/etc/quantum/rootwrap.conf $Q_RR_CONF_FILE
579 else
580 sudo cp -p $QUANTUM_DIR/etc/rootwrap.conf $Q_RR_CONF_FILE
581 fi
Nachi Uenoeb1aa3d2012-12-06 11:55:29 -0800582 sudo sed -e "s:^filters_path=.*$:filters_path=$Q_CONF_ROOTWRAP_D:" -i $Q_RR_CONF_FILE
583 sudo chown root:root $Q_RR_CONF_FILE
584 sudo chmod 0644 $Q_RR_CONF_FILE
585 # Specify rootwrap.conf as first parameter to quantum-rootwrap
586 ROOTWRAP_SUDOER_CMD="$QUANTUM_ROOTWRAP $Q_RR_CONF_FILE *"
587
588 # Set up the rootwrap sudoers for quantum
589 TEMPFILE=`mktemp`
590 echo "$USER ALL=(root) NOPASSWD: $ROOTWRAP_SUDOER_CMD" >$TEMPFILE
591 chmod 0440 $TEMPFILE
592 sudo chown root:root $TEMPFILE
593 sudo mv $TEMPFILE /etc/sudoers.d/quantum-rootwrap
Gary Kotton98e18e92013-01-28 14:26:56 +0000594
595 # Update the root_helper
596 iniset $QUANTUM_CONF AGENT root_helper "$Q_RR_COMMAND"
Nachi Uenoeb1aa3d2012-12-06 11:55:29 -0800597}
598
Salvatore Orlandod6767d02012-08-31 04:55:20 -0700599# Configures keystone integration for quantum service and agents
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900600function _quantum_setup_keystone() {
Salvatore Orlandod6767d02012-08-31 04:55:20 -0700601 local conf_file=$1
602 local section=$2
603 local use_auth_url=$3
604 if [[ -n $use_auth_url ]]; then
605 iniset $conf_file $section auth_url "$KEYSTONE_SERVICE_PROTOCOL://$KEYSTONE_AUTH_HOST:$KEYSTONE_AUTH_PORT/v2.0"
606 else
607 iniset $conf_file $section auth_host $KEYSTONE_SERVICE_HOST
608 iniset $conf_file $section auth_port $KEYSTONE_AUTH_PORT
609 iniset $conf_file $section auth_protocol $KEYSTONE_SERVICE_PROTOCOL
610 fi
611 iniset $conf_file $section admin_tenant_name $SERVICE_TENANT_NAME
612 iniset $conf_file $section admin_user $Q_ADMIN_USERNAME
613 iniset $conf_file $section admin_password $SERVICE_PASSWORD
Akihiro MOTOKI5e3deb62012-12-11 17:09:02 +0900614 iniset $conf_file $section signing_dir $QUANTUM_AUTH_CACHE_DIR
615 # Create cache dir
616 sudo mkdir -p $QUANTUM_AUTH_CACHE_DIR
Attila Fazekas91b8d132013-01-06 22:40:09 +0100617 sudo chown $STACK_USER $QUANTUM_AUTH_CACHE_DIR
Vishvananda Ishaya23431f32012-12-12 15:57:33 -0800618 rm -f $QUANTUM_AUTH_CACHE_DIR/*
Salvatore Orlandod6767d02012-08-31 04:55:20 -0700619}
620
Akihiro MOTOKI712feb62013-02-11 23:45:19 +0900621function _quantum_commentout_keystone_authtoken() {
622 local conf_file=$1
623 local section=$2
624
625 inicomment $conf_file $section auth_host
626 inicomment $conf_file $section auth_port
627 inicomment $conf_file $section auth_protocol
628 inicomment $conf_file $section auth_url
629
630 inicomment $conf_file $section admin_tenant_name
631 inicomment $conf_file $section admin_user
632 inicomment $conf_file $section admin_password
633 inicomment $conf_file $section signing_dir
634}
635
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900636function _quantum_setup_interface_driver() {
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900637 quantum_plugin_setup_interface_driver $1
Yoshihiro Kaneko602cf9b2012-07-23 06:27:36 +0000638}
639
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900640# Functions for Quantum Exercises
641#--------------------------------
642
643function delete_probe() {
644 local from_net="$1"
645 net_id=`_get_net_id $from_net`
646 probe_id=`quantum-debug --os-tenant-name admin --os-username admin --os-password $ADMIN_PASSWORD probe-list -c id -c network_id | grep $net_id | awk '{print $2}'`
647 quantum-debug --os-tenant-name admin --os-username admin probe-delete $probe_id
648}
649
650function setup_quantum_debug() {
651 if [[ "$Q_USE_DEBUG_COMMAND" == "True" ]]; then
652 public_net_id=`_get_net_id $PUBLIC_NETWORK_NAME`
Akihiro MOTOKI3452f8e2013-03-21 14:11:27 +0900653 quantum-debug --os-tenant-name admin --os-username admin --os-password $ADMIN_PASSWORD probe-create --device-owner compute $public_net_id
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900654 private_net_id=`_get_net_id $PRIVATE_NETWORK_NAME`
Akihiro MOTOKI3452f8e2013-03-21 14:11:27 +0900655 quantum-debug --os-tenant-name admin --os-username admin --os-password $ADMIN_PASSWORD probe-create --device-owner compute $private_net_id
Yoshihiro Kaneko602cf9b2012-07-23 06:27:36 +0000656 fi
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900657}
658
659function teardown_quantum_debug() {
660 delete_probe $PUBLIC_NETWORK_NAME
661 delete_probe $PRIVATE_NETWORK_NAME
Yoshihiro Kaneko602cf9b2012-07-23 06:27:36 +0000662}
663
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700664function _get_net_id() {
665 quantum --os-tenant-name admin --os-username admin --os-password $ADMIN_PASSWORD net-list | grep $1 | awk '{print $2}'
666}
667
668function _get_probe_cmd_prefix() {
669 local from_net="$1"
670 net_id=`_get_net_id $from_net`
671 probe_id=`quantum-debug --os-tenant-name admin --os-username admin --os-password $ADMIN_PASSWORD probe-list -c id -c network_id | grep $net_id | awk '{print $2}' | head -n 1`
Nachi Ueno8bc21f62012-11-19 22:04:28 -0800672 echo "$Q_RR_COMMAND ip netns exec qprobe-$probe_id"
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700673}
674
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700675function _ping_check_quantum() {
676 local from_net=$1
677 local ip=$2
678 local timeout_sec=$3
679 local expected=${4:-"True"}
680 local check_command=""
681 probe_cmd=`_get_probe_cmd_prefix $from_net`
682 if [[ "$expected" = "True" ]]; then
Nachi Ueno8bc21f62012-11-19 22:04:28 -0800683 check_command="while ! $probe_cmd ping -w 1 -c 1 $ip; do sleep 1; done"
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700684 else
Nachi Ueno8bc21f62012-11-19 22:04:28 -0800685 check_command="while $probe_cmd ping -w 1 -c 1 $ip; do sleep 1; done"
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700686 fi
687 if ! timeout $timeout_sec sh -c "$check_command"; then
688 if [[ "$expected" = "True" ]]; then
Nachi Ueno07115eb2013-02-26 12:38:18 -0800689 die $LINENO "[Fail] Couldn't ping server"
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700690 else
Nachi Ueno07115eb2013-02-26 12:38:18 -0800691 die $LINENO "[Fail] Could ping server"
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700692 fi
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700693 fi
694}
695
696# ssh check
697function _ssh_check_quantum() {
698 local from_net=$1
699 local key_file=$2
700 local ip=$3
701 local user=$4
702 local timeout_sec=$5
703 local probe_cmd = ""
704 probe_cmd=`_get_probe_cmd_prefix $from_net`
705 if ! timeout $timeout_sec sh -c "while ! $probe_cmd ssh -o StrictHostKeyChecking=no -i $key_file ${user}@$ip echo success ; do sleep 1; done"; then
Nachi Ueno07115eb2013-02-26 12:38:18 -0800706 die $LINENO "server didn't become ssh-able!"
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700707 fi
708}
709
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900710# Quantum 3rd party programs
711#---------------------------
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900712# please refer to lib/quantum_thirdparty/README.md for details
713QUANTUM_THIRD_PARTIES=""
714for f in $TOP_DIR/lib/quantum_thirdparty/*; do
715 third_party=$(basename $f)
716 if is_service_enabled $third_party; then
717 source $TOP_DIR/lib/quantum_thirdparty/$third_party
718 QUANTUM_THIRD_PARTIES="$QUANTUM_THIRD_PARTIES,$third_party"
719 fi
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900720done
721
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900722function _quantum_third_party_do() {
723 for third_party in ${QUANTUM_THIRD_PARTIES//,/ }; do
724 ${1}_${third_party}
725 done
726}
727
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900728# configure_quantum_third_party() - Set config files, create data dirs, etc
729function configure_quantum_third_party() {
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900730 _quantum_third_party_do configure
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700731}
732
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900733# init_quantum_third_party() - Initialize databases, etc.
734function init_quantum_third_party() {
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900735 _quantum_third_party_do init
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700736}
737
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900738# install_quantum_third_party() - Collect source and prepare
739function install_quantum_third_party() {
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900740 _quantum_third_party_do install
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900741}
742
743# start_quantum_third_party() - Start running processes, including screen
744function start_quantum_third_party() {
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900745 _quantum_third_party_do start
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900746}
747
748# stop_quantum_third_party - Stop running processes (non-screen)
749function stop_quantum_third_party() {
Isaku Yamahata0dd34df2012-12-28 13:15:31 +0900750 _quantum_third_party_do stop
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900751}
752
753
Salvatore Orlandod6767d02012-08-31 04:55:20 -0700754# Restore xtrace
755$XTRACE
Sean Dague584d90e2013-03-29 14:34:53 -0400756
757# Local variables:
758# mode: shell-script
759# End: