blob: e7719d4ebc6cecaf075384de59350bf100212d9e [file] [log] [blame]
Sean M. Collins2a242512016-05-03 09:03:09 -04001#!/bin/bash
2#
3# lib/neutron
4# Install and start **Neutron** network services
5
6# Dependencies:
7#
8# ``functions`` file
9# ``DEST`` must be defined
10
11# ``stack.sh`` calls the entry points in this order:
12#
13# - is_XXXX_enabled
14# - install_XXXX
15# - configure_XXXX
16# - init_XXXX
17# - start_XXXX
18# - stop_XXXX
19# - cleanup_XXXX
20
21# Save trace setting
22XTRACE=$(set +o | grep xtrace)
23set +o xtrace
24
25# Defaults
26# --------
27
28# Set up default directories
29GITDIR["python-neutronclient"]=$DEST/python-neutronclient
30
Kevin Benton66b361b2017-06-13 00:31:01 -070031# NEUTRON_DEPLOY_MOD_WSGI defines how neutron is deployed, allowed values:
32# - False (default) : Run neutron under Eventlet
33# - True : Run neutron under uwsgi
34# TODO(annp): Switching to uwsgi in next cycle if things turn out to be stable
35# enough
Jens Harbott3492fee2018-11-30 13:57:17 +000036NEUTRON_DEPLOY_MOD_WSGI=$(trueorfalse False NEUTRON_DEPLOY_MOD_WSGI)
Sean M. Collins2a242512016-05-03 09:03:09 -040037NEUTRON_AGENT=${NEUTRON_AGENT:-openvswitch}
38NEUTRON_DIR=$DEST/neutron
Sean M. Collins2a242512016-05-03 09:03:09 -040039
Slawek Kaplonski24b65ad2021-06-22 15:31:46 +020040# If NEUTRON_ENFORCE_SCOPE == True, it will set "enforce_scope"
41# and "enforce_new_defaults" to True in the Neutron's config to enforce usage
42# of the new RBAC policies and scopes.
43NEUTRON_ENFORCE_SCOPE=$(trueorfalse False NEUTRON_ENFORCE_SCOPE)
44
Brian Haley9aaa5292017-09-20 14:23:05 -040045NEUTRON_DISTRIBUTED_ROUTING=$(trueorfalse False NEUTRON_DISTRIBUTED_ROUTING)
46# Distributed Virtual Router (DVR) configuration
47# Can be:
48# - ``legacy`` - No DVR functionality
49# - ``dvr_snat`` - Controller or single node DVR
50# - ``dvr`` - Compute node in multi-node DVR
51# - ``dvr_no_external`` - Compute node in multi-node DVR, no external network
52#
53# Default is 'dvr_snat' since it can handle both DVR and legacy routers
54NEUTRON_DVR_MODE=${NEUTRON_DVR_MODE:-dvr_snat}
55
Sean M. Collins2a242512016-05-03 09:03:09 -040056NEUTRON_BIN_DIR=$(get_python_exec_prefix)
57NEUTRON_DHCP_BINARY="neutron-dhcp-agent"
58
59NEUTRON_CONF_DIR=/etc/neutron
60NEUTRON_CONF=$NEUTRON_CONF_DIR/neutron.conf
61NEUTRON_META_CONF=$NEUTRON_CONF_DIR/metadata_agent.ini
Brian Haleya5491912019-07-31 12:18:39 -040062NEUTRON_META_DATA_HOST=${NEUTRON_META_DATA_HOST:-$(ipv6_unquote $SERVICE_HOST)}
Sean M. Collins2a242512016-05-03 09:03:09 -040063
64NEUTRON_DHCP_CONF=$NEUTRON_CONF_DIR/dhcp_agent.ini
65NEUTRON_L3_CONF=$NEUTRON_CONF_DIR/l3_agent.ini
66NEUTRON_AGENT_CONF=$NEUTRON_CONF_DIR/
Josh8f721622018-02-01 09:45:47 +020067NEUTRON_CREATE_INITIAL_NETWORKS=${NEUTRON_CREATE_INITIAL_NETWORKS:-True}
Sean M. Collins2a242512016-05-03 09:03:09 -040068
69NEUTRON_STATE_PATH=${NEUTRON_STATE_PATH:=$DATA_DIR/neutron}
Sean M. Collins2a242512016-05-03 09:03:09 -040070
Kevin Benton66b361b2017-06-13 00:31:01 -070071NEUTRON_UWSGI_CONF=$NEUTRON_CONF_DIR/neutron-api-uwsgi.ini
72
Sean M. Collins2a242512016-05-03 09:03:09 -040073# By default, use the ML2 plugin
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +090074NEUTRON_CORE_PLUGIN=${NEUTRON_CORE_PLUGIN:-ml2}
75NEUTRON_CORE_PLUGIN_CONF_FILENAME=${NEUTRON_CORE_PLUGIN_CONF_FILENAME:-ml2_conf.ini}
76NEUTRON_CORE_PLUGIN_CONF_PATH=$NEUTRON_CONF_DIR/plugins/$NEUTRON_CORE_PLUGIN
77NEUTRON_CORE_PLUGIN_CONF=$NEUTRON_CORE_PLUGIN_CONF_PATH/$NEUTRON_CORE_PLUGIN_CONF_FILENAME
Sean M. Collins2a242512016-05-03 09:03:09 -040078
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000079NEUTRON_METERING_AGENT_CONF_FILENAME=${NEUTRON_METERING_AGENT_CONF_FILENAME:-metering_agent.ini}
80NEUTRON_METERING_AGENT_CONF=$NEUTRON_CONF_DIR/$NEUTRON_METERING_AGENT_CONF_FILENAME
81
Sean M. Collins2a242512016-05-03 09:03:09 -040082NEUTRON_AGENT_BINARY=${NEUTRON_AGENT_BINARY:-neutron-$NEUTRON_AGENT-agent}
83NEUTRON_L3_BINARY=${NEUTRON_L3_BINARY:-neutron-l3-agent}
84NEUTRON_META_BINARY=${NEUTRON_META_BINARY:-neutron-metadata-agent}
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +000085NEUTRON_METERING_BINARY=${NEUTRON_METERING_BINARY:-neutron-metering-agent}
Sean M. Collins2a242512016-05-03 09:03:09 -040086
87# Public facing bits
Sean Daguef3b2f4c2017-04-13 10:11:48 -040088if is_service_enabled tls-proxy; then
Sean M. Collins2a242512016-05-03 09:03:09 -040089 NEUTRON_SERVICE_PROTOCOL="https"
90fi
91NEUTRON_SERVICE_HOST=${NEUTRON_SERVICE_HOST:-$SERVICE_HOST}
92NEUTRON_SERVICE_PORT=${NEUTRON_SERVICE_PORT:-9696}
93NEUTRON_SERVICE_PORT_INT=${NEUTRON_SERVICE_PORT_INT:-19696}
94NEUTRON_SERVICE_PROTOCOL=${NEUTRON_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
95
96NEUTRON_AUTH_STRATEGY=${NEUTRON_AUTH_STRATEGY:-keystone}
97NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron)
98NEUTRON_ROOTWRAP_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +000099NEUTRON_ROOTWRAP_CMD="$NEUTRON_ROOTWRAP $NEUTRON_ROOTWRAP_CONF_FILE"
100NEUTRON_ROOTWRAP_DAEMON_CMD="$NEUTRON_ROOTWRAP-daemon $NEUTRON_ROOTWRAP_CONF_FILE"
Sean M. Collins2a242512016-05-03 09:03:09 -0400101
Ihar Hrachyshka615e1152017-02-23 10:41:51 +0000102# This is needed because _neutron_ovs_base_configure_l3_agent uses it to create
103# an external network bridge
104PUBLIC_BRIDGE=${PUBLIC_BRIDGE:-br-ex}
105PUBLIC_BRIDGE_MTU=${PUBLIC_BRIDGE_MTU:-1500}
106
Julia Kreger6e5b1382019-01-09 17:00:45 -0800107# Network type - default vxlan, however enables vlan based jobs to override
108# using the legacy environment variable as well as a new variable in greater
109# alignment with the naming scheme of this plugin.
110NEUTRON_TENANT_NETWORK_TYPE=${NEUTRON_TENANT_NETWORK_TYPE:-vxlan}
111
112NEUTRON_TENANT_VLAN_RANGE=${NEUTRON_TENANT_VLAN_RANGE:-${TENANT_VLAN_RANGE:-100:150}}
113
114# Physical network for VLAN network usage.
115NEUTRON_PHYSICAL_NETWORK=${NEUTRON_PHYSICAL_NETWORK:-}
116
117
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900118# Additional neutron api config files
Sean Dagueafef8bf2017-03-06 14:07:23 -0500119declare -a -g _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900120
Sean M. Collins2a242512016-05-03 09:03:09 -0400121# Functions
122# ---------
123
124# Test if any Neutron services are enabled
125# is_neutron_enabled
126function is_neutron_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -0700127 [[ ,${DISABLED_SERVICES} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -0400128 [[ ,${ENABLED_SERVICES} =~ ,"neutron-" || ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
129 return 1
130}
131
132# Test if any Neutron services are enabled
133# is_neutron_enabled
134function is_neutron_legacy_enabled {
Slawek Kaplonskia9a51ca2019-04-15 23:54:31 +0200135 # first we need to remove all "neutron-" from DISABLED_SERVICES list
136 disabled_services_copy=$(echo $DISABLED_SERVICES | sed 's/neutron-//g')
137 [[ ,${disabled_services_copy} =~ ,"neutron" ]] && return 1
Sean M. Collins2a242512016-05-03 09:03:09 -0400138 [[ ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0
139 return 1
140}
141
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900142if is_neutron_legacy_enabled; then
143 source $TOP_DIR/lib/neutron-legacy
144fi
145
Sean M. Collins2a242512016-05-03 09:03:09 -0400146# cleanup_neutron() - Remove residual data files, anything left over from previous
147# runs that a clean run would need to clean up
148function cleanup_neutron_new {
elajkatc994dc42022-01-06 11:28:55 +0100149 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Sean M. Collins2a242512016-05-03 09:03:09 -0400150 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
151 if is_neutron_ovs_base_plugin; then
152 neutron_ovs_base_cleanup
153 fi
154
155 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
156 neutron_lb_cleanup
157 fi
158 # delete all namespaces created by neutron
159 for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|qlbaas|fip|snat)-[0-9a-f-]*'); do
160 sudo ip netns delete ${ns}
161 done
162}
163
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000164# configure_root_helper_options() - Configure agent rootwrap helper options
165function configure_root_helper_options {
166 local conffile=$1
167 iniset $conffile agent root_helper "sudo $NEUTRON_ROOTWRAP_CMD"
168 iniset $conffile agent root_helper_daemon "sudo $NEUTRON_ROOTWRAP_DAEMON_CMD"
169}
170
Sean M. Collins2a242512016-05-03 09:03:09 -0400171# configure_neutron() - Set config files, create data dirs, etc
172function configure_neutron_new {
elajkatc994dc42022-01-06 11:28:55 +0100173 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Sean M. Collins2a242512016-05-03 09:03:09 -0400174 sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR
175
176 (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh)
177
178 cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF
179
180 configure_neutron_rootwrap
181
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900182 mkdir -p $NEUTRON_CORE_PLUGIN_CONF_PATH
Sean M. Collins2a242512016-05-03 09:03:09 -0400183
YAMAMOTO Takashi1df17c92017-05-01 17:00:42 +0900184 # NOTE(yamamoto): A decomposed plugin should prepare the config file in
185 # its devstack plugin.
186 if [ -f $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample ]; then
187 cp $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample $NEUTRON_CORE_PLUGIN_CONF
188 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400189
190 iniset $NEUTRON_CONF database connection `database_connection_url neutron`
191 iniset $NEUTRON_CONF DEFAULT state_path $NEUTRON_STATE_PATH
192 iniset $NEUTRON_CONF oslo_concurrency lock_path $NEUTRON_STATE_PATH/lock
193 iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG
194
Gary Kottond2ef6152016-09-20 04:12:11 -0700195 iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collinsfbba3b92016-05-12 11:17:53 -0400196
Sean M. Collins5394cc12016-05-11 15:03:38 -0400197 iniset_rpc_backend neutron $NEUTRON_CONF
198
Sean M. Collins2a242512016-05-03 09:03:09 -0400199 # Neutron API server & Neutron plugin
200 if is_service_enabled neutron-api; then
201 local policy_file=$NEUTRON_CONF_DIR/policy.json
Sean M. Collins2a242512016-05-03 09:03:09 -0400202 # Allow neutron user to administer neutron to match neutron account
Akihiro Motoki80769c52018-11-23 05:18:40 +0900203 # NOTE(amotoki): This is required for nova works correctly with neutron.
204 if [ -f $NEUTRON_DIR/etc/policy.json ]; then
205 cp $NEUTRON_DIR/etc/policy.json $policy_file
206 sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:neutron"/g' $policy_file
207 else
208 echo '{"context_is_admin": "role:admin or user_name:neutron"}' > $policy_file
209 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400210
211 cp $NEUTRON_DIR/etc/api-paste.ini $NEUTRON_CONF_DIR/api-paste.ini
212
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900213 iniset $NEUTRON_CONF DEFAULT core_plugin $NEUTRON_CORE_PLUGIN
Sean M. Collins2a242512016-05-03 09:03:09 -0400214
Sean M. Collins2a242512016-05-03 09:03:09 -0400215 iniset $NEUTRON_CONF DEFAULT policy_file $policy_file
216 iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips True
Brian Haley9aaa5292017-09-20 14:23:05 -0400217 iniset $NEUTRON_CONF DEFAULT router_distributed $NEUTRON_DISTRIBUTED_ROUTING
Sean M. Collins2a242512016-05-03 09:03:09 -0400218
219 iniset $NEUTRON_CONF DEFAULT auth_strategy $NEUTRON_AUTH_STRATEGY
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100220 configure_keystone_authtoken_middleware $NEUTRON_CONF neutron
221 configure_keystone_authtoken_middleware $NEUTRON_CONF nova nova
Sean M. Collins2a242512016-05-03 09:03:09 -0400222
Julia Kreger6e5b1382019-01-09 17:00:45 -0800223 # Configure tenant network type
224 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 tenant_network_types $NEUTRON_TENANT_NETWORK_TYPE
Brian Haley9aaa5292017-09-20 14:23:05 -0400225
226 local mech_drivers="openvswitch"
227 if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
228 mech_drivers+=",l2population"
229 else
230 mech_drivers+=",linuxbridge"
231 fi
232 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 mechanism_drivers $mech_drivers
233
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900234 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vxlan vni_ranges 1001:2000
Harald Jensåsf1a794e2019-08-21 10:49:57 +0200235 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_flat flat_networks $PUBLIC_NETWORK_NAME
Julia Kreger6e5b1382019-01-09 17:00:45 -0800236 if [[ "$NEUTRON_TENANT_NETWORK_TYPE" =~ "vlan" ]] && [[ "$NEUTRON_PHYSICAL_NETWORK" != "" ]]; then
237 iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vlan network_vlan_ranges ${NEUTRON_PHYSICAL_NETWORK}:${NEUTRON_TENANT_VLAN_RANGE}
238 fi
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400239 if [[ "$NEUTRON_PORT_SECURITY" = "True" ]]; then
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000240 neutron_ml2_extension_driver_add port_security
Matt Riedemannc9c9d312016-09-15 20:33:22 -0400241 fi
Slawek Kaplonski24b65ad2021-06-22 15:31:46 +0200242 configure_rbac_policies
Sean M. Collins2a242512016-05-03 09:03:09 -0400243 fi
244
245 # Neutron OVS or LB agent
246 if is_service_enabled neutron-agent; then
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900247 iniset $NEUTRON_CORE_PLUGIN_CONF agent tunnel_types vxlan
248 iniset $NEUTRON_CORE_PLUGIN_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000249 configure_root_helper_options $NEUTRON_CORE_PLUGIN_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400250
251 # Configure the neutron agent
252 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
Sean M. Collinsedcb7e52016-12-15 11:29:28 -0500253 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900254 iniset $NEUTRON_CORE_PLUGIN_CONF vxlan local_ip $HOST_IP
Jakub Libosvara99ab702018-05-14 16:12:52 +0200255 elif [[ $NEUTRON_AGENT == "openvswitch" ]]; then
256 iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver openvswitch
YAMAMOTO Takashi4a55d2a2016-08-24 15:30:09 +0900257 iniset $NEUTRON_CORE_PLUGIN_CONF ovs local_ip $HOST_IP
Brian Haley9aaa5292017-09-20 14:23:05 -0400258
259 if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
260 iniset $NEUTRON_CORE_PLUGIN_CONF agent l2_population True
261 iniset $NEUTRON_CORE_PLUGIN_CONF agent enable_distributed_routing True
Swaminathan Vasudevan9bf7e262019-05-02 13:45:46 -0700262 iniset $NEUTRON_CORE_PLUGIN_CONF agent arp_responder True
Brian Haley9aaa5292017-09-20 14:23:05 -0400263 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400264 fi
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000265
Denis Buliga0bf75a42017-02-06 16:56:46 +0200266 if ! running_in_container; then
267 enable_kernel_bridge_firewall
268 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400269 fi
270
271 # DHCP Agent
272 if is_service_enabled neutron-dhcp; then
273 cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $NEUTRON_DHCP_CONF
274
Gary Kottond2ef6152016-09-20 04:12:11 -0700275 iniset $NEUTRON_DHCP_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean Dague78801c12016-08-04 14:10:07 -0400276 # make it so we have working DNS from guests
277 iniset $NEUTRON_DHCP_CONF DEFAULT dnsmasq_local_resolv True
278
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000279 configure_root_helper_options $NEUTRON_DHCP_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400280 iniset $NEUTRON_DHCP_CONF DEFAULT interface_driver $NEUTRON_AGENT
281 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
282 fi
283
284 if is_service_enabled neutron-l3; then
285 cp $NEUTRON_DIR/etc/l3_agent.ini.sample $NEUTRON_L3_CONF
286 iniset $NEUTRON_L3_CONF DEFAULT interface_driver $NEUTRON_AGENT
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900287 neutron_service_plugin_class_add router
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000288 configure_root_helper_options $NEUTRON_L3_CONF
Gary Kottond2ef6152016-09-20 04:12:11 -0700289 iniset $NEUTRON_L3_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Sean M. Collins2a242512016-05-03 09:03:09 -0400290 neutron_plugin_configure_l3_agent $NEUTRON_L3_CONF
Ihar Hrachyshkae3915932017-02-24 06:24:47 +0000291
292 # Configure the neutron agent to serve external network ports
293 if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then
294 iniset $NEUTRON_CORE_PLUGIN_CONF linux_bridge bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
295 else
296 iniset $NEUTRON_CORE_PLUGIN_CONF ovs bridge_mappings "$PUBLIC_NETWORK_NAME:$PUBLIC_BRIDGE"
297 fi
Brian Haley9aaa5292017-09-20 14:23:05 -0400298
299 if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
300 iniset $NEUTRON_L3_CONF DEFAULT agent_mode $NEUTRON_DVR_MODE
301 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400302 fi
303
304 # Metadata
Sean M. Collins1cd28282016-05-11 15:07:19 -0400305 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400306 cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $NEUTRON_META_CONF
307
Gary Kottond2ef6152016-09-20 04:12:11 -0700308 iniset $NEUTRON_META_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Brian Haleya5491912019-07-31 12:18:39 -0400309 iniset $NEUTRON_META_CONF DEFAULT nova_metadata_host $NEUTRON_META_DATA_HOST
Armando Migliaccio06f2ea22017-02-02 16:47:00 -0800310 iniset $NEUTRON_META_CONF DEFAULT metadata_workers $API_WORKERS
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000311 # TODO(ihrachys) do we really need to set rootwrap for metadata agent?
312 configure_root_helper_options $NEUTRON_META_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400313
314 # TODO(dtroyer): remove the v2.0 hard code below
Sean Daguec13b8a12017-04-20 06:54:51 -0400315 iniset $NEUTRON_META_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100316 configure_keystone_authtoken_middleware $NEUTRON_META_CONF neutron DEFAULT
Sean M. Collins2a242512016-05-03 09:03:09 -0400317 fi
318
319 # Format logging
Sean Dague27f66e92017-05-02 09:08:17 -0400320 setup_logging $NEUTRON_CONF
Sean M. Collins2a242512016-05-03 09:03:09 -0400321
Kevin Benton66b361b2017-06-13 00:31:01 -0700322 if is_service_enabled tls-proxy && [ "$NEUTRON_DEPLOY_MOD_WSGI" == "False" ]; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400323 # Set the service port for a proxy to take the original
324 iniset $NEUTRON_CONF DEFAULT bind_port "$NEUTRON_SERVICE_PORT_INT"
Jens Harbott411c34d2017-08-29 14:40:26 +0000325 iniset $NEUTRON_CONF oslo_middleware enable_proxy_headers_parsing True
Sean M. Collins2a242512016-05-03 09:03:09 -0400326 fi
327
Sean M. Collins8063fee2016-05-24 11:27:36 -0700328 # Metering
329 if is_service_enabled neutron-metering; then
Ihar Hrachyshkabf697f52017-02-23 12:09:01 +0000330 cp $NEUTRON_DIR/etc/metering_agent.ini.sample $NEUTRON_METERING_AGENT_CONF
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900331 neutron_service_plugin_class_add metering
Sean M. Collins8063fee2016-05-24 11:27:36 -0700332 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400333}
334
335# configure_neutron_rootwrap() - configure Neutron's rootwrap
336function configure_neutron_rootwrap {
Sean M. Collins2a242512016-05-03 09:03:09 -0400337 # Deploy new rootwrap filters files (owned by root).
338 # Wipe any existing rootwrap.d files first
339 if [[ -d $NEUTRON_CONF_DIR/rootwrap.d ]]; then
340 sudo rm -rf $NEUTRON_CONF_DIR/rootwrap.d
341 fi
342
343 # Deploy filters to /etc/neutron/rootwrap.d
344 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
345 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
346
347 # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d``
348 sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $NEUTRON_CONF_DIR
349 sudo sed -e "s:^filters_path=.*$:filters_path=$NEUTRON_CONF_DIR/rootwrap.d:" -i $NEUTRON_CONF_DIR/rootwrap.conf
350
351 # Set up the rootwrap sudoers for Neutron
352 tempfile=`mktemp`
Ihar Hrachyshkae65ab4a2017-02-24 17:47:55 +0000353 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_CMD *" >$tempfile
354 echo "$STACK_USER ALL=(root) NOPASSWD: $NEUTRON_ROOTWRAP_DAEMON_CMD" >>$tempfile
Sean M. Collins2a242512016-05-03 09:03:09 -0400355 chmod 0440 $tempfile
356 sudo chown root:root $tempfile
357 sudo mv $tempfile /etc/sudoers.d/neutron-rootwrap
358}
359
360# Make Neutron-required changes to nova.conf
Lucas Alvares Gomese6385932018-06-28 11:00:28 +0100361# Takes a single optional argument which is the config file to update,
362# if not passed $NOVA_CONF is used.
Sean M. Collins2a242512016-05-03 09:03:09 -0400363function configure_neutron_nova_new {
elajkatc994dc42022-01-06 11:28:55 +0100364 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Lucas Alvares Gomese6385932018-06-28 11:00:28 +0100365 local conf=${1:-$NOVA_CONF}
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400366 iniset $conf neutron auth_type "password"
367 iniset $conf neutron auth_url "$KEYSTONE_SERVICE_URI"
368 iniset $conf neutron username neutron
369 iniset $conf neutron password "$SERVICE_PASSWORD"
370 iniset $conf neutron user_domain_name "Default"
371 iniset $conf neutron project_name "$SERVICE_TENANT_NAME"
372 iniset $conf neutron project_domain_name "Default"
373 iniset $conf neutron auth_strategy $NEUTRON_AUTH_STRATEGY
374 iniset $conf neutron region_name "$REGION_NAME"
Sean M. Collins2a242512016-05-03 09:03:09 -0400375
Gary Kotton88f85582016-08-14 06:55:42 -0700376 # optionally set options in nova_conf
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400377 neutron_plugin_create_nova_conf $conf
Gary Kotton88f85582016-08-14 06:55:42 -0700378
Sean M. Collins1cd28282016-05-11 15:07:19 -0400379 if is_service_enabled neutron-metadata-agent; then
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400380 iniset $conf neutron service_metadata_proxy "True"
Sean M. Collins2a242512016-05-03 09:03:09 -0400381 fi
382
383}
384
385# Tenant User Roles
386# ------------------------------------------------------------------
387# service neutron admin # if enabled
388
389# create_neutron_accounts() - Create required service accounts
390function create_neutron_accounts_new {
elajkatc994dc42022-01-06 11:28:55 +0100391 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Kevin Benton66b361b2017-06-13 00:31:01 -0700392 local neutron_url
393
394 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
395 neutron_url=$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST/networking/
396 else
397 neutron_url=$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/
398 fi
399
400
Sean M. Collins2a242512016-05-03 09:03:09 -0400401 if [[ "$ENABLED_SERVICES" =~ "neutron-api" ]]; then
402
403 create_service_user "neutron"
404
405 neutron_service=$(get_or_create_service "neutron" \
406 "network" "Neutron Service")
407 get_or_create_endpoint $neutron_service \
Kevin Benton66b361b2017-06-13 00:31:01 -0700408 "$REGION_NAME" "$neutron_url"
Sean M. Collins2a242512016-05-03 09:03:09 -0400409 fi
410}
411
Sean M. Collins2a242512016-05-03 09:03:09 -0400412# init_neutron() - Initialize databases, etc.
413function init_neutron_new {
414
elajkatc994dc42022-01-06 11:28:55 +0100415 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Sean M. Collins2a242512016-05-03 09:03:09 -0400416 recreate_database neutron
417
Clark Boylan633dbc32017-06-14 12:09:21 -0700418 time_start "dbsync"
Sean M. Collins2a242512016-05-03 09:03:09 -0400419 # Run Neutron db migrations
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000420 $NEUTRON_BIN_DIR/neutron-db-manage upgrade heads
Clark Boylan633dbc32017-06-14 12:09:21 -0700421 time_stop "dbsync"
Sean M. Collins2a242512016-05-03 09:03:09 -0400422}
423
424# install_neutron() - Collect source and prepare
425function install_neutron_new {
elajkatc994dc42022-01-06 11:28:55 +0100426 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Sean M. Collins2a242512016-05-03 09:03:09 -0400427 git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH
428 setup_develop $NEUTRON_DIR
429
430 # Install neutron-lib from git so we make sure we're testing
431 # the latest code.
432 if use_library_from_git "neutron-lib"; then
433 git_clone_by_name "neutron-lib"
434 setup_dev_lib "neutron-lib"
435 fi
436
437 # L3 service requires radvd
438 if is_service_enabled neutron-l3; then
439 install_package radvd
440 fi
441
442 if is_service_enabled neutron-agent neutron-dhcp neutron-l3; then
443 #TODO(sc68cal) - kind of ugly
444 source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent
445 neutron_plugin_install_agent_packages
446 fi
447
448}
449
450# install_neutronclient() - Collect source and prepare
451function install_neutronclient {
452 if use_library_from_git "python-neutronclient"; then
453 git_clone_by_name "python-neutronclient"
454 setup_dev_lib "python-neutronclient"
455 sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-neutronclient"]}/tools/,/etc/bash_completion.d/}neutron.bash_completion
456 fi
457}
458
459# start_neutron_api() - Start the API process ahead of other things
460function start_neutron_api {
461 local service_port=$NEUTRON_SERVICE_PORT
462 local service_protocol=$NEUTRON_SERVICE_PROTOCOL
Kevin Benton66b361b2017-06-13 00:31:01 -0700463 local neutron_url
Sean M. Collins2a242512016-05-03 09:03:09 -0400464 if is_service_enabled tls-proxy; then
465 service_port=$NEUTRON_SERVICE_PORT_INT
466 service_protocol="http"
467 fi
468
YAMAMOTO Takashied887d82017-02-22 14:21:33 -0500469 local opts=""
470 opts+=" --config-file $NEUTRON_CONF"
471 opts+=" --config-file $NEUTRON_CORE_PLUGIN_CONF"
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900472 local cfg_file
473 for cfg_file in ${_NEUTRON_SERVER_EXTRA_CONF_FILES_ABS[@]}; do
474 opts+=" --config-file $cfg_file"
475 done
476
Kevin Benton66b361b2017-06-13 00:31:01 -0700477 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
Ian Wienand312517d2018-06-22 22:23:29 +1000478 run_process neutron-api "$(which uwsgi) --procname-prefix neutron-api --ini $NEUTRON_UWSGI_CONF"
Kevin Benton66b361b2017-06-13 00:31:01 -0700479 neutron_url=$service_protocol://$NEUTRON_SERVICE_HOST/networking/
480 enable_service neutron-rpc-server
481 run_process neutron-rpc-server "$NEUTRON_BIN_DIR/neutron-rpc-server $opts"
482 else
483 # Start the Neutron service
484 # TODO(sc68cal) Stop hard coding this
485 run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server $opts"
486 neutron_url=$service_protocol://$NEUTRON_SERVICE_HOST:$service_port
487 # Start proxy if enabled
488 if is_service_enabled tls-proxy; then
489 start_tls_proxy neutron '*' $NEUTRON_SERVICE_PORT $NEUTRON_SERVICE_HOST $NEUTRON_SERVICE_PORT_INT
490 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400491 fi
492
Kevin Benton66b361b2017-06-13 00:31:01 -0700493 if ! wait_for_service $SERVICE_TIMEOUT $neutron_url; then
494 die $LINENO "neutron-api did not start"
Sean M. Collins2a242512016-05-03 09:03:09 -0400495 fi
496}
497
Sean Dague0eebeb42017-08-30 14:16:58 -0400498# start_neutron() - Start running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400499function start_neutron_new {
elajkatc994dc42022-01-06 11:28:55 +0100500 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Sean M. Collins2a242512016-05-03 09:03:09 -0400501 # Start up the neutron agents if enabled
502 # TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins
503 # can resolve the $NEUTRON_AGENT_BINARY
504 if is_service_enabled neutron-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000505 # TODO(ihrachys) stop loading ml2_conf.ini into agents, instead load agent specific files
506 run_process neutron-agent "$NEUTRON_BIN_DIR/$NEUTRON_AGENT_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_CORE_PLUGIN_CONF"
Sean M. Collins2a242512016-05-03 09:03:09 -0400507 fi
508 if is_service_enabled neutron-dhcp; then
509 neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000510 run_process neutron-dhcp "$NEUTRON_BIN_DIR/$NEUTRON_DHCP_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_DHCP_CONF"
Sean M. Collins2a242512016-05-03 09:03:09 -0400511 fi
512 if is_service_enabled neutron-l3; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000513 run_process neutron-l3 "$NEUTRON_BIN_DIR/$NEUTRON_L3_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_L3_CONF"
YAMAMOTO Takashic07170a2016-07-20 19:44:05 +0900514 fi
Josh8f721622018-02-01 09:45:47 +0200515 if is_service_enabled neutron-api && [[ "$NEUTRON_CREATE_INITIAL_NETWORKS" == "True" ]]; then
YAMAMOTO Takashi07edde12016-10-19 19:21:00 +0000516 # XXX(sc68cal) - Here's where plugins can wire up their own networks instead
517 # of the code in lib/neutron_plugins/services/l3
518 if type -p neutron_plugin_create_initial_networks > /dev/null; then
519 neutron_plugin_create_initial_networks
520 else
521 # XXX(sc68cal) Load up the built in Neutron networking code and build a topology
522 source $TOP_DIR/lib/neutron_plugins/services/l3
523 # Create the networks using servic
524 create_neutron_initial_network
525 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400526 fi
Sean M. Collins1cd28282016-05-11 15:07:19 -0400527 if is_service_enabled neutron-metadata-agent; then
Ihar Hrachyshka19f4b3f2017-02-23 20:44:18 +0000528 run_process neutron-metadata-agent "$NEUTRON_BIN_DIR/$NEUTRON_META_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_META_CONF"
Sean M. Collins2a242512016-05-03 09:03:09 -0400529 fi
Sean M. Collins8063fee2016-05-24 11:27:36 -0700530
531 if is_service_enabled neutron-metering; then
Ihar Hrachyshka868746b2017-09-13 15:44:18 -0600532 run_process neutron-metering "$NEUTRON_BIN_DIR/$NEUTRON_METERING_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_METERING_AGENT_CONF"
Sean M. Collins8063fee2016-05-24 11:27:36 -0700533 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400534}
535
Sean Dague0eebeb42017-08-30 14:16:58 -0400536# stop_neutron() - Stop running processes
Sean M. Collins2a242512016-05-03 09:03:09 -0400537function stop_neutron_new {
elajkatc994dc42022-01-06 11:28:55 +0100538 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
Sean M. Collins2a242512016-05-03 09:03:09 -0400539 for serv in neutron-api neutron-agent neutron-l3; do
540 stop_process $serv
541 done
542
Kevin Benton66b361b2017-06-13 00:31:01 -0700543 if is_service_enabled neutron-rpc-server; then
544 stop_process neutron-rpc-server
545 fi
546
Sean M. Collins2a242512016-05-03 09:03:09 -0400547 if is_service_enabled neutron-dhcp; then
548 stop_process neutron-dhcp
549 pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }')
550 [ ! -z "$pid" ] && sudo kill -9 $pid
551 fi
552
Sean M. Collins1cd28282016-05-11 15:07:19 -0400553 if is_service_enabled neutron-metadata-agent; then
Sean M. Collins2a242512016-05-03 09:03:09 -0400554 sudo pkill -9 -f neutron-ns-metadata-proxy || :
Sean M. Collins1cd28282016-05-11 15:07:19 -0400555 stop_process neutron-metadata-agent
Sean M. Collins2a242512016-05-03 09:03:09 -0400556 fi
557}
558
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900559# neutron_service_plugin_class_add() - add service plugin class
560function neutron_service_plugin_class_add_new {
elajkatc994dc42022-01-06 11:28:55 +0100561 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900562 local service_plugin_class=$1
563 local plugins=""
564
565 plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins)
YAMAMOTO Takashi84e45c92017-02-22 14:25:14 -0500566 if [ $plugins ]; then
567 plugins+=","
568 fi
569 plugins+="${service_plugin_class}"
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900570 iniset $NEUTRON_CONF DEFAULT service_plugins $plugins
571}
572
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000573function _neutron_ml2_extension_driver_add {
574 local driver=$1
575 local drivers=""
576
577 drivers=$(iniget $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers)
578 if [ $drivers ]; then
579 drivers+=","
580 fi
581 drivers+="${driver}"
582 iniset $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers $drivers
583}
584
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900585function neutron_server_config_add_new {
elajkatc994dc42022-01-06 11:28:55 +0100586 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900587 _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS+=($1)
588}
589
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500590# neutron_deploy_rootwrap_filters() - deploy rootwrap filters
591function neutron_deploy_rootwrap_filters_new {
elajkatc994dc42022-01-06 11:28:55 +0100592 deprecated "Using lib/neutron is deprecated, and it will be removed in AA release!"
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500593 local srcdir=$1
594 sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d
595 sudo install -o root -g root -m 644 $srcdir/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d
596}
597
Sean M. Collins2a242512016-05-03 09:03:09 -0400598# Dispatch functions
599# These are needed for compatibility between the old and new implementations
600# where there are function name overlaps. These will be removed when
601# neutron-legacy is removed.
602# TODO(sc68cal) Remove when neutron-legacy is no more.
603function cleanup_neutron {
Kevin Benton66b361b2017-06-13 00:31:01 -0700604 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
605 stop_process neutron-api
606 stop_process neutron-rpc-server
607 remove_uwsgi_config "$NEUTRON_UWSGI_CONF" "$NEUTRON_BIN_DIR/neutron-api"
608 sudo rm -f $(apache_site_config_for neutron-api)
609 fi
610
Sean M. Collins2a242512016-05-03 09:03:09 -0400611 if is_neutron_legacy_enabled; then
612 # Call back to old function
613 cleanup_mutnauq "$@"
614 else
615 cleanup_neutron_new "$@"
616 fi
617}
618
619function configure_neutron {
620 if is_neutron_legacy_enabled; then
621 # Call back to old function
622 configure_mutnauq "$@"
623 else
624 configure_neutron_new "$@"
625 fi
Kevin Benton66b361b2017-06-13 00:31:01 -0700626
627 if [ "$NEUTRON_DEPLOY_MOD_WSGI" == "True" ]; then
628 write_uwsgi_config "$NEUTRON_UWSGI_CONF" "$NEUTRON_BIN_DIR/neutron-api" "/networking"
629 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400630}
631
Slawek Kaplonski24b65ad2021-06-22 15:31:46 +0200632# configure_rbac_policies() - Configure Neutron to enforce new RBAC
633# policies and scopes if NEUTRON_ENFORCE_SCOPE == True
634function configure_rbac_policies {
635 if [ "$NEUTRON_ENFORCE_SCOPE" == "True" ]; then
636 iniset $NEUTRON_CONF oslo_policy enforce_new_defaults True
637 iniset $NEUTRON_CONF oslo_policy enforce_scope True
638 else
639 iniset $NEUTRON_CONF oslo_policy enforce_new_defaults False
640 iniset $NEUTRON_CONF oslo_policy enforce_scope False
641 fi
642}
643
644
Sean M. Collins2a242512016-05-03 09:03:09 -0400645function configure_neutron_nova {
646 if is_neutron_legacy_enabled; then
647 # Call back to old function
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400648 create_nova_conf_neutron $NOVA_CONF
649 if [[ "${CELLSV2_SETUP}" == "superconductor" ]]; then
650 for i in $(seq 1 $NOVA_NUM_CELLS); do
651 local conf
652 conf=$(conductor_conf $i)
653 create_nova_conf_neutron $conf
654 done
655 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400656 else
Matt Riedemanne95f2a32018-06-18 16:17:29 -0400657 configure_neutron_nova_new $NOVA_CONF
658 if [[ "${CELLSV2_SETUP}" == "superconductor" ]]; then
659 for i in $(seq 1 $NOVA_NUM_CELLS); do
660 local conf
661 conf=$(conductor_conf $i)
662 configure_neutron_nova_new $conf
663 done
664 fi
Sean M. Collins2a242512016-05-03 09:03:09 -0400665 fi
666}
667
668function create_neutron_accounts {
669 if is_neutron_legacy_enabled; then
670 # Call back to old function
671 create_mutnauq_accounts "$@"
672 else
673 create_neutron_accounts_new "$@"
674 fi
675}
676
677function init_neutron {
678 if is_neutron_legacy_enabled; then
679 # Call back to old function
680 init_mutnauq "$@"
681 else
682 init_neutron_new "$@"
683 fi
684}
685
686function install_neutron {
687 if is_neutron_legacy_enabled; then
688 # Call back to old function
689 install_mutnauq "$@"
690 else
691 install_neutron_new "$@"
692 fi
693}
694
YAMAMOTO Takashid9ec4202016-07-21 16:14:52 +0900695function neutron_service_plugin_class_add {
696 if is_neutron_legacy_enabled; then
697 # Call back to old function
698 _neutron_service_plugin_class_add "$@"
699 else
700 neutron_service_plugin_class_add_new "$@"
701 fi
702}
703
Ihar Hrachyshkaf511c362017-03-07 06:31:49 +0000704function neutron_ml2_extension_driver_add {
705 if is_neutron_legacy_enabled; then
706 # Call back to old function
707 _neutron_ml2_extension_driver_add_old "$@"
708 else
709 _neutron_ml2_extension_driver_add "$@"
710 fi
711}
712
YAMAMOTO Takashic74315e2016-07-21 17:49:43 +0900713function install_neutron_agent_packages {
714 if is_neutron_legacy_enabled; then
715 # Call back to old function
716 install_neutron_agent_packages_mutnauq "$@"
717 else
718 :
719 fi
720}
721
YAMAMOTO Takashieede9dd2016-07-15 10:27:53 +0900722function neutron_server_config_add {
723 if is_neutron_legacy_enabled; then
724 # Call back to old function
725 mutnauq_server_config_add "$@"
726 else
727 neutron_server_config_add_new "$@"
728 fi
729}
730
Sean M. Collins2a242512016-05-03 09:03:09 -0400731function start_neutron {
732 if is_neutron_legacy_enabled; then
733 # Call back to old function
734 start_mutnauq_l2_agent "$@"
735 start_mutnauq_other_agents "$@"
736 else
737 start_neutron_new "$@"
738 fi
739}
740
741function stop_neutron {
742 if is_neutron_legacy_enabled; then
743 # Call back to old function
744 stop_mutnauq "$@"
745 else
746 stop_neutron_new "$@"
747 fi
748}
749
YAMAMOTO Takashic043b6f2017-02-23 22:30:08 -0500750function neutron_deploy_rootwrap_filters {
751 if is_neutron_legacy_enabled; then
752 # Call back to old function
753 _neutron_deploy_rootwrap_filters "$@"
754 else
755 neutron_deploy_rootwrap_filters_new "$@"
756 fi
757}
758
Sean M. Collins2a242512016-05-03 09:03:09 -0400759# Restore xtrace
760$XTRACE