| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 1 | #!/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 | 
|  | 22 | XTRACE=$(set +o | grep xtrace) | 
|  | 23 | set +o xtrace | 
|  | 24 |  | 
|  | 25 | # Defaults | 
|  | 26 | # -------- | 
|  | 27 |  | 
|  | 28 | # Set up default directories | 
|  | 29 | GITDIR["python-neutronclient"]=$DEST/python-neutronclient | 
|  | 30 |  | 
|  | 31 | NEUTRON_AGENT=${NEUTRON_AGENT:-openvswitch} | 
|  | 32 | NEUTRON_DIR=$DEST/neutron | 
|  | 33 | NEUTRON_AUTH_CACHE_DIR=${NEUTRON_AUTH_CACHE_DIR:-/var/cache/neutron} | 
|  | 34 |  | 
|  | 35 | NEUTRON_BIN_DIR=$(get_python_exec_prefix) | 
|  | 36 | NEUTRON_DHCP_BINARY="neutron-dhcp-agent" | 
|  | 37 |  | 
|  | 38 | NEUTRON_CONF_DIR=/etc/neutron | 
|  | 39 | NEUTRON_CONF=$NEUTRON_CONF_DIR/neutron.conf | 
|  | 40 | NEUTRON_META_CONF=$NEUTRON_CONF_DIR/metadata_agent.ini | 
|  | 41 |  | 
|  | 42 | NEUTRON_DHCP_CONF=$NEUTRON_CONF_DIR/dhcp_agent.ini | 
|  | 43 | NEUTRON_L3_CONF=$NEUTRON_CONF_DIR/l3_agent.ini | 
|  | 44 | NEUTRON_AGENT_CONF=$NEUTRON_CONF_DIR/ | 
|  | 45 |  | 
|  | 46 | NEUTRON_STATE_PATH=${NEUTRON_STATE_PATH:=$DATA_DIR/neutron} | 
|  | 47 | NEUTRON_AUTH_CACHE_DIR=${NEUTRON_AUTH_CACHE_DIR:-/var/cache/neutron} | 
|  | 48 |  | 
|  | 49 | # By default, use the ML2 plugin | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 50 | NEUTRON_CORE_PLUGIN=${NEUTRON_CORE_PLUGIN:-ml2} | 
|  | 51 | NEUTRON_CORE_PLUGIN_CONF_FILENAME=${NEUTRON_CORE_PLUGIN_CONF_FILENAME:-ml2_conf.ini} | 
|  | 52 | NEUTRON_CORE_PLUGIN_CONF_PATH=$NEUTRON_CONF_DIR/plugins/$NEUTRON_CORE_PLUGIN | 
|  | 53 | NEUTRON_CORE_PLUGIN_CONF=$NEUTRON_CORE_PLUGIN_CONF_PATH/$NEUTRON_CORE_PLUGIN_CONF_FILENAME | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 54 |  | 
| Ihar Hrachyshka | bf697f5 | 2017-02-23 12:09:01 +0000 | [diff] [blame] | 55 | NEUTRON_METERING_AGENT_CONF_FILENAME=${NEUTRON_METERING_AGENT_CONF_FILENAME:-metering_agent.ini} | 
|  | 56 | NEUTRON_METERING_AGENT_CONF=$NEUTRON_CONF_DIR/$NEUTRON_METERING_AGENT_CONF_FILENAME | 
|  | 57 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 58 | NEUTRON_AGENT_BINARY=${NEUTRON_AGENT_BINARY:-neutron-$NEUTRON_AGENT-agent} | 
|  | 59 | NEUTRON_L3_BINARY=${NEUTRON_L3_BINARY:-neutron-l3-agent} | 
|  | 60 | NEUTRON_META_BINARY=${NEUTRON_META_BINARY:-neutron-metadata-agent} | 
| Ihar Hrachyshka | bf697f5 | 2017-02-23 12:09:01 +0000 | [diff] [blame] | 61 | NEUTRON_METERING_BINARY=${NEUTRON_METERING_BINARY:-neutron-metering-agent} | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 62 |  | 
|  | 63 | # Public facing bits | 
| Sean Dague | f3b2f4c | 2017-04-13 10:11:48 -0400 | [diff] [blame] | 64 | if is_service_enabled tls-proxy; then | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 65 | NEUTRON_SERVICE_PROTOCOL="https" | 
|  | 66 | fi | 
|  | 67 | NEUTRON_SERVICE_HOST=${NEUTRON_SERVICE_HOST:-$SERVICE_HOST} | 
|  | 68 | NEUTRON_SERVICE_PORT=${NEUTRON_SERVICE_PORT:-9696} | 
|  | 69 | NEUTRON_SERVICE_PORT_INT=${NEUTRON_SERVICE_PORT_INT:-19696} | 
|  | 70 | NEUTRON_SERVICE_PROTOCOL=${NEUTRON_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL} | 
|  | 71 |  | 
|  | 72 | NEUTRON_AUTH_STRATEGY=${NEUTRON_AUTH_STRATEGY:-keystone} | 
|  | 73 | NEUTRON_ROOTWRAP=$(get_rootwrap_location neutron) | 
|  | 74 | NEUTRON_ROOTWRAP_CONF_FILE=$NEUTRON_CONF_DIR/rootwrap.conf | 
|  | 75 | NEUTRON_ROOTWRAP_DAEMON_CMD="sudo $NEUTRON_ROOTWRAP-daemon $NEUTRON_ROOTWRAP_CONF_FILE" | 
|  | 76 |  | 
| Ihar Hrachyshka | 615e115 | 2017-02-23 10:41:51 +0000 | [diff] [blame] | 77 | # This is needed because _neutron_ovs_base_configure_l3_agent will set | 
|  | 78 | # external_network_bridge | 
|  | 79 | Q_USE_PROVIDERNET_FOR_PUBLIC=${Q_USE_PROVIDERNET_FOR_PUBLIC:-True} | 
|  | 80 | # This is needed because _neutron_ovs_base_configure_l3_agent uses it to create | 
|  | 81 | # an external network bridge | 
|  | 82 | PUBLIC_BRIDGE=${PUBLIC_BRIDGE:-br-ex} | 
|  | 83 | PUBLIC_BRIDGE_MTU=${PUBLIC_BRIDGE_MTU:-1500} | 
|  | 84 |  | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 85 | # Additional neutron api config files | 
| Sean Dague | afef8bf | 2017-03-06 14:07:23 -0500 | [diff] [blame] | 86 | declare -a -g _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 87 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 88 | # Functions | 
|  | 89 | # --------- | 
|  | 90 |  | 
|  | 91 | # Test if any Neutron services are enabled | 
|  | 92 | # is_neutron_enabled | 
|  | 93 | function is_neutron_enabled { | 
|  | 94 | [[ ,${ENABLED_SERVICES} =~ ,"neutron-" || ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0 | 
|  | 95 | return 1 | 
|  | 96 | } | 
|  | 97 |  | 
|  | 98 | # Test if any Neutron services are enabled | 
|  | 99 | # is_neutron_enabled | 
|  | 100 | function is_neutron_legacy_enabled { | 
|  | 101 | [[ ,${ENABLED_SERVICES} =~ ,"q-" ]] && return 0 | 
|  | 102 | return 1 | 
|  | 103 | } | 
|  | 104 |  | 
| YAMAMOTO Takashi | c74315e | 2016-07-21 17:49:43 +0900 | [diff] [blame] | 105 | if is_neutron_legacy_enabled; then | 
|  | 106 | source $TOP_DIR/lib/neutron-legacy | 
|  | 107 | fi | 
|  | 108 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 109 | # cleanup_neutron() - Remove residual data files, anything left over from previous | 
|  | 110 | # runs that a clean run would need to clean up | 
|  | 111 | function cleanup_neutron_new { | 
|  | 112 | source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent | 
|  | 113 | if is_neutron_ovs_base_plugin; then | 
|  | 114 | neutron_ovs_base_cleanup | 
|  | 115 | fi | 
|  | 116 |  | 
|  | 117 | if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then | 
|  | 118 | neutron_lb_cleanup | 
|  | 119 | fi | 
|  | 120 | # delete all namespaces created by neutron | 
|  | 121 | for ns in $(sudo ip netns list | grep -o -E '(qdhcp|qrouter|qlbaas|fip|snat)-[0-9a-f-]*'); do | 
|  | 122 | sudo ip netns delete ${ns} | 
|  | 123 | done | 
|  | 124 | } | 
|  | 125 |  | 
|  | 126 | # configure_neutron() - Set config files, create data dirs, etc | 
|  | 127 | function configure_neutron_new { | 
|  | 128 | sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR | 
|  | 129 |  | 
|  | 130 | (cd $NEUTRON_DIR && exec ./tools/generate_config_file_samples.sh) | 
|  | 131 |  | 
|  | 132 | cp $NEUTRON_DIR/etc/neutron.conf.sample $NEUTRON_CONF | 
|  | 133 |  | 
|  | 134 | configure_neutron_rootwrap | 
|  | 135 |  | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 136 | mkdir -p $NEUTRON_CORE_PLUGIN_CONF_PATH | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 137 |  | 
| YAMAMOTO Takashi | 1df17c9 | 2017-05-01 17:00:42 +0900 | [diff] [blame] | 138 | # NOTE(yamamoto): A decomposed plugin should prepare the config file in | 
|  | 139 | # its devstack plugin. | 
|  | 140 | if [ -f $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample ]; then | 
|  | 141 | cp $NEUTRON_DIR/etc/neutron/plugins/$NEUTRON_CORE_PLUGIN/$NEUTRON_CORE_PLUGIN_CONF_FILENAME.sample $NEUTRON_CORE_PLUGIN_CONF | 
|  | 142 | fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 143 |  | 
|  | 144 | iniset $NEUTRON_CONF database connection `database_connection_url neutron` | 
|  | 145 | iniset $NEUTRON_CONF DEFAULT state_path $NEUTRON_STATE_PATH | 
|  | 146 | iniset $NEUTRON_CONF oslo_concurrency lock_path $NEUTRON_STATE_PATH/lock | 
|  | 147 | iniset $NEUTRON_CONF DEFAULT use_syslog $SYSLOG | 
|  | 148 |  | 
| Gary Kotton | d2ef615 | 2016-09-20 04:12:11 -0700 | [diff] [blame] | 149 | iniset $NEUTRON_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL | 
| Sean M. Collins | fbba3b9 | 2016-05-12 11:17:53 -0400 | [diff] [blame] | 150 |  | 
| Sean M. Collins | 5394cc1 | 2016-05-11 15:03:38 -0400 | [diff] [blame] | 151 | iniset_rpc_backend neutron $NEUTRON_CONF | 
|  | 152 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 153 | # Neutron API server & Neutron plugin | 
|  | 154 | if is_service_enabled neutron-api; then | 
|  | 155 | local policy_file=$NEUTRON_CONF_DIR/policy.json | 
|  | 156 | cp $NEUTRON_DIR/etc/policy.json $policy_file | 
|  | 157 | # Allow neutron user to administer neutron to match neutron account | 
|  | 158 | sed -i 's/"context_is_admin":  "role:admin"/"context_is_admin":  "role:admin or user_name:neutron"/g' $policy_file | 
|  | 159 |  | 
|  | 160 | cp $NEUTRON_DIR/etc/api-paste.ini $NEUTRON_CONF_DIR/api-paste.ini | 
|  | 161 |  | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 162 | iniset $NEUTRON_CONF DEFAULT core_plugin $NEUTRON_CORE_PLUGIN | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 163 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 164 | iniset $NEUTRON_CONF DEFAULT policy_file $policy_file | 
|  | 165 | iniset $NEUTRON_CONF DEFAULT allow_overlapping_ips True | 
|  | 166 |  | 
|  | 167 | iniset $NEUTRON_CONF DEFAULT auth_strategy $NEUTRON_AUTH_STRATEGY | 
|  | 168 | configure_auth_token_middleware $NEUTRON_CONF neutron $NEUTRON_AUTH_CACHE_DIR keystone_authtoken | 
| Ihar Hrachyshka | 0ce4ba9 | 2017-02-24 05:13:53 +0000 | [diff] [blame] | 169 | configure_auth_token_middleware $NEUTRON_CONF nova $NEUTRON_AUTH_CACHE_DIR nova | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 170 |  | 
|  | 171 | # Configure VXLAN | 
|  | 172 | # TODO(sc68cal) not hardcode? | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 173 | iniset $NEUTRON_CORE_PLUGIN_CONF ml2 tenant_network_types vxlan | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 174 | iniset $NEUTRON_CORE_PLUGIN_CONF ml2 mechanism_drivers openvswitch,linuxbridge | 
|  | 175 | iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_vxlan vni_ranges 1001:2000 | 
| Sean M. Collins | edcb7e5 | 2016-12-15 11:29:28 -0500 | [diff] [blame] | 176 | iniset $NEUTRON_CORE_PLUGIN_CONF ml2_type_flat flat_networks public | 
| Matt Riedemann | c9c9d31 | 2016-09-15 20:33:22 -0400 | [diff] [blame] | 177 | if [[ "$NEUTRON_PORT_SECURITY" = "True" ]]; then | 
| Ihar Hrachyshka | f511c36 | 2017-03-07 06:31:49 +0000 | [diff] [blame] | 178 | neutron_ml2_extension_driver_add port_security | 
| Matt Riedemann | c9c9d31 | 2016-09-15 20:33:22 -0400 | [diff] [blame] | 179 | fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 180 | fi | 
|  | 181 |  | 
|  | 182 | # Neutron OVS or LB agent | 
|  | 183 | if is_service_enabled neutron-agent; then | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 184 | iniset $NEUTRON_CORE_PLUGIN_CONF agent tunnel_types vxlan | 
|  | 185 | iniset $NEUTRON_CORE_PLUGIN_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 186 |  | 
|  | 187 | # Configure the neutron agent | 
|  | 188 | if [[ $NEUTRON_AGENT == "linuxbridge" ]]; then | 
| Sean M. Collins | edcb7e5 | 2016-12-15 11:29:28 -0500 | [diff] [blame] | 189 | iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 190 | iniset $NEUTRON_CORE_PLUGIN_CONF vxlan local_ip $HOST_IP | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 191 | else | 
| Sean M. Collins | edcb7e5 | 2016-12-15 11:29:28 -0500 | [diff] [blame] | 192 | iniset $NEUTRON_CORE_PLUGIN_CONF securitygroup firewall_driver iptables_hybrid | 
| YAMAMOTO Takashi | 4a55d2a | 2016-08-24 15:30:09 +0900 | [diff] [blame] | 193 | iniset $NEUTRON_CORE_PLUGIN_CONF ovs local_ip $HOST_IP | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 194 | fi | 
| Ihar Hrachyshka | b3a210f | 2016-09-29 13:26:30 +0000 | [diff] [blame] | 195 |  | 
| Denis Buliga | 0bf75a4 | 2017-02-06 16:56:46 +0200 | [diff] [blame] | 196 | if ! running_in_container; then | 
|  | 197 | enable_kernel_bridge_firewall | 
|  | 198 | fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 199 | fi | 
|  | 200 |  | 
|  | 201 | # DHCP Agent | 
|  | 202 | if is_service_enabled neutron-dhcp; then | 
|  | 203 | cp $NEUTRON_DIR/etc/dhcp_agent.ini.sample $NEUTRON_DHCP_CONF | 
|  | 204 |  | 
| Gary Kotton | d2ef615 | 2016-09-20 04:12:11 -0700 | [diff] [blame] | 205 | iniset $NEUTRON_DHCP_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL | 
| Sean Dague | 78801c1 | 2016-08-04 14:10:07 -0400 | [diff] [blame] | 206 | # make it so we have working DNS from guests | 
|  | 207 | iniset $NEUTRON_DHCP_CONF DEFAULT dnsmasq_local_resolv True | 
|  | 208 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 209 | iniset $NEUTRON_DHCP_CONF agent root_helper_daemon "$NEUTRON_ROOTWRAP_DAEMON_CMD" | 
|  | 210 | iniset $NEUTRON_DHCP_CONF DEFAULT interface_driver $NEUTRON_AGENT | 
|  | 211 | neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF | 
|  | 212 | fi | 
|  | 213 |  | 
|  | 214 | if is_service_enabled neutron-l3; then | 
|  | 215 | cp $NEUTRON_DIR/etc/l3_agent.ini.sample $NEUTRON_L3_CONF | 
|  | 216 | iniset $NEUTRON_L3_CONF DEFAULT interface_driver $NEUTRON_AGENT | 
| YAMAMOTO Takashi | d9ec420 | 2016-07-21 16:14:52 +0900 | [diff] [blame] | 217 | neutron_service_plugin_class_add router | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 218 | iniset $NEUTRON_L3_CONF agent root_helper_daemon "$NEUTRON_ROOTWRAP_DAEMON_CMD" | 
| Gary Kotton | d2ef615 | 2016-09-20 04:12:11 -0700 | [diff] [blame] | 219 | iniset $NEUTRON_L3_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 220 | neutron_plugin_configure_l3_agent $NEUTRON_L3_CONF | 
|  | 221 | fi | 
|  | 222 |  | 
|  | 223 | # Metadata | 
| Sean M. Collins | 1cd2828 | 2016-05-11 15:07:19 -0400 | [diff] [blame] | 224 | if is_service_enabled neutron-metadata-agent; then | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 225 | cp $NEUTRON_DIR/etc/metadata_agent.ini.sample $NEUTRON_META_CONF | 
|  | 226 |  | 
| Gary Kotton | d2ef615 | 2016-09-20 04:12:11 -0700 | [diff] [blame] | 227 | iniset $NEUTRON_META_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 228 | iniset $NEUTRON_META_CONF DEFAULT nova_metadata_ip $SERVICE_HOST | 
| Armando Migliaccio | 06f2ea2 | 2017-02-02 16:47:00 -0800 | [diff] [blame] | 229 | iniset $NEUTRON_META_CONF DEFAULT metadata_workers $API_WORKERS | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 230 | iniset $NEUTRON_META_CONF agent root_helper_daemon "$NEUTRON_ROOTWRAP_DAEMON_CMD" | 
|  | 231 |  | 
|  | 232 | # TODO(dtroyer): remove the v2.0 hard code below | 
| Sean Dague | c13b8a1 | 2017-04-20 06:54:51 -0400 | [diff] [blame] | 233 | iniset $NEUTRON_META_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 234 | configure_auth_token_middleware $NEUTRON_META_CONF neutron $NEUTRON_AUTH_CACHE_DIR DEFAULT | 
|  | 235 | fi | 
|  | 236 |  | 
|  | 237 | # Format logging | 
| Sean Dague | 27f66e9 | 2017-05-02 09:08:17 -0400 | [diff] [blame] | 238 | setup_logging $NEUTRON_CONF | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 239 |  | 
|  | 240 | if is_service_enabled tls-proxy; then | 
|  | 241 | # Set the service port for a proxy to take the original | 
|  | 242 | iniset $NEUTRON_CONF DEFAULT bind_port "$NEUTRON_SERVICE_PORT_INT" | 
|  | 243 | fi | 
|  | 244 |  | 
| Sean M. Collins | 8063fee | 2016-05-24 11:27:36 -0700 | [diff] [blame] | 245 | # Metering | 
|  | 246 | if is_service_enabled neutron-metering; then | 
| Ihar Hrachyshka | bf697f5 | 2017-02-23 12:09:01 +0000 | [diff] [blame] | 247 | cp $NEUTRON_DIR/etc/metering_agent.ini.sample $NEUTRON_METERING_AGENT_CONF | 
| YAMAMOTO Takashi | d9ec420 | 2016-07-21 16:14:52 +0900 | [diff] [blame] | 248 | neutron_service_plugin_class_add metering | 
| Sean M. Collins | 8063fee | 2016-05-24 11:27:36 -0700 | [diff] [blame] | 249 | fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 250 | } | 
|  | 251 |  | 
|  | 252 | # configure_neutron_rootwrap() - configure Neutron's rootwrap | 
|  | 253 | function configure_neutron_rootwrap { | 
|  | 254 | # Set the paths of certain binaries | 
|  | 255 | neutron_rootwrap=$(get_rootwrap_location neutron) | 
|  | 256 |  | 
|  | 257 | # Specify ``rootwrap.conf`` as first parameter to neutron-rootwrap | 
|  | 258 | local rootwrap_sudoer_cmd="${neutron_rootwrap} $NEUTRON_CONF_DIR/rootwrap.conf" | 
|  | 259 |  | 
|  | 260 | # Deploy new rootwrap filters files (owned by root). | 
|  | 261 | # Wipe any existing rootwrap.d files first | 
|  | 262 | if [[ -d $NEUTRON_CONF_DIR/rootwrap.d ]]; then | 
|  | 263 | sudo rm -rf $NEUTRON_CONF_DIR/rootwrap.d | 
|  | 264 | fi | 
|  | 265 |  | 
|  | 266 | # Deploy filters to /etc/neutron/rootwrap.d | 
|  | 267 | sudo install -d -o root -g root -m 755 $NEUTRON_CONF_DIR/rootwrap.d | 
|  | 268 | sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/neutron/rootwrap.d/*.filters $NEUTRON_CONF_DIR/rootwrap.d | 
|  | 269 |  | 
|  | 270 | # Set up ``rootwrap.conf``, pointing to ``$NEUTRON_CONF_DIR/rootwrap.d`` | 
|  | 271 | sudo install -o root -g root -m 644 $NEUTRON_DIR/etc/rootwrap.conf $NEUTRON_CONF_DIR | 
|  | 272 | sudo sed -e "s:^filters_path=.*$:filters_path=$NEUTRON_CONF_DIR/rootwrap.d:" -i $NEUTRON_CONF_DIR/rootwrap.conf | 
|  | 273 |  | 
|  | 274 | # Set up the rootwrap sudoers for Neutron | 
|  | 275 | tempfile=`mktemp` | 
|  | 276 | echo "$STACK_USER ALL=(root) NOPASSWD: $rootwrap_sudoer_cmd *" >$tempfile | 
|  | 277 | chmod 0440 $tempfile | 
|  | 278 | sudo chown root:root $tempfile | 
|  | 279 | sudo mv $tempfile /etc/sudoers.d/neutron-rootwrap | 
|  | 280 | } | 
|  | 281 |  | 
|  | 282 | # Make Neutron-required changes to nova.conf | 
|  | 283 | function configure_neutron_nova_new { | 
|  | 284 | iniset $NOVA_CONF DEFAULT use_neutron True | 
|  | 285 | iniset $NOVA_CONF neutron auth_type "password" | 
| Sean Dague | c13b8a1 | 2017-04-20 06:54:51 -0400 | [diff] [blame] | 286 | iniset $NOVA_CONF neutron auth_url "$KEYSTONE_SERVICE_URI" | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 287 | iniset $NOVA_CONF neutron username neutron | 
|  | 288 | iniset $NOVA_CONF neutron password "$SERVICE_PASSWORD" | 
|  | 289 | iniset $NOVA_CONF neutron user_domain_name "Default" | 
|  | 290 | iniset $NOVA_CONF neutron project_name "$SERVICE_TENANT_NAME" | 
|  | 291 | iniset $NOVA_CONF neutron project_domain_name "Default" | 
|  | 292 | iniset $NOVA_CONF neutron auth_strategy $NEUTRON_AUTH_STRATEGY | 
|  | 293 | iniset $NOVA_CONF neutron region_name "$REGION_NAME" | 
|  | 294 | iniset $NOVA_CONF neutron url $NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT | 
|  | 295 |  | 
|  | 296 | iniset $NOVA_CONF DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver | 
|  | 297 |  | 
| Gary Kotton | 88f8558 | 2016-08-14 06:55:42 -0700 | [diff] [blame] | 298 | # optionally set options in nova_conf | 
|  | 299 | neutron_plugin_create_nova_conf | 
|  | 300 |  | 
| Sean M. Collins | 1cd2828 | 2016-05-11 15:07:19 -0400 | [diff] [blame] | 301 | if is_service_enabled neutron-metadata-agent; then | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 302 | iniset $NOVA_CONF neutron service_metadata_proxy "True" | 
|  | 303 | fi | 
|  | 304 |  | 
|  | 305 | } | 
|  | 306 |  | 
|  | 307 | # Tenant               User       Roles | 
|  | 308 | # ------------------------------------------------------------------ | 
|  | 309 | # service              neutron    admin        # if enabled | 
|  | 310 |  | 
|  | 311 | # create_neutron_accounts() - Create required service accounts | 
|  | 312 | function create_neutron_accounts_new { | 
|  | 313 | if [[ "$ENABLED_SERVICES" =~ "neutron-api" ]]; then | 
|  | 314 |  | 
|  | 315 | create_service_user "neutron" | 
|  | 316 |  | 
|  | 317 | neutron_service=$(get_or_create_service "neutron" \ | 
|  | 318 | "network" "Neutron Service") | 
|  | 319 | get_or_create_endpoint $neutron_service \ | 
|  | 320 | "$REGION_NAME" \ | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 321 | "$NEUTRON_SERVICE_PROTOCOL://$NEUTRON_SERVICE_HOST:$NEUTRON_SERVICE_PORT/" | 
|  | 322 | fi | 
|  | 323 | } | 
|  | 324 |  | 
|  | 325 | # create_neutron_cache_dir() - Part of the init_neutron() process | 
|  | 326 | function create_neutron_cache_dir { | 
|  | 327 | # Create cache dir | 
|  | 328 | sudo install -d -o $STACK_USER $NEUTRON_AUTH_CACHE_DIR | 
|  | 329 | rm -f $NEUTRON_AUTH_CACHE_DIR/* | 
|  | 330 | } | 
|  | 331 |  | 
|  | 332 | # init_neutron() - Initialize databases, etc. | 
|  | 333 | function init_neutron_new { | 
|  | 334 |  | 
|  | 335 | recreate_database neutron | 
|  | 336 |  | 
|  | 337 | # Run Neutron db migrations | 
| Ihar Hrachyshka | 19f4b3f | 2017-02-23 20:44:18 +0000 | [diff] [blame] | 338 | $NEUTRON_BIN_DIR/neutron-db-manage upgrade heads | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 339 |  | 
|  | 340 | create_neutron_cache_dir | 
|  | 341 | } | 
|  | 342 |  | 
|  | 343 | # install_neutron() - Collect source and prepare | 
|  | 344 | function install_neutron_new { | 
|  | 345 | git_clone $NEUTRON_REPO $NEUTRON_DIR $NEUTRON_BRANCH | 
|  | 346 | setup_develop $NEUTRON_DIR | 
|  | 347 |  | 
|  | 348 | # Install neutron-lib from git so we make sure we're testing | 
|  | 349 | # the latest code. | 
|  | 350 | if use_library_from_git "neutron-lib"; then | 
|  | 351 | git_clone_by_name "neutron-lib" | 
|  | 352 | setup_dev_lib "neutron-lib" | 
|  | 353 | fi | 
|  | 354 |  | 
|  | 355 | # L3 service requires radvd | 
|  | 356 | if is_service_enabled neutron-l3; then | 
|  | 357 | install_package radvd | 
|  | 358 | fi | 
|  | 359 |  | 
|  | 360 | if is_service_enabled neutron-agent neutron-dhcp neutron-l3; then | 
|  | 361 | #TODO(sc68cal) - kind of ugly | 
|  | 362 | source $TOP_DIR/lib/neutron_plugins/${NEUTRON_AGENT}_agent | 
|  | 363 | neutron_plugin_install_agent_packages | 
|  | 364 | fi | 
|  | 365 |  | 
|  | 366 | } | 
|  | 367 |  | 
|  | 368 | # install_neutronclient() - Collect source and prepare | 
|  | 369 | function install_neutronclient { | 
|  | 370 | if use_library_from_git "python-neutronclient"; then | 
|  | 371 | git_clone_by_name "python-neutronclient" | 
|  | 372 | setup_dev_lib "python-neutronclient" | 
|  | 373 | sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-neutronclient"]}/tools/,/etc/bash_completion.d/}neutron.bash_completion | 
|  | 374 | fi | 
|  | 375 | } | 
|  | 376 |  | 
|  | 377 | # start_neutron_api() - Start the API process ahead of other things | 
|  | 378 | function start_neutron_api { | 
|  | 379 | local service_port=$NEUTRON_SERVICE_PORT | 
|  | 380 | local service_protocol=$NEUTRON_SERVICE_PROTOCOL | 
|  | 381 | if is_service_enabled tls-proxy; then | 
|  | 382 | service_port=$NEUTRON_SERVICE_PORT_INT | 
|  | 383 | service_protocol="http" | 
|  | 384 | fi | 
|  | 385 |  | 
| YAMAMOTO Takashi | ed887d8 | 2017-02-22 14:21:33 -0500 | [diff] [blame] | 386 | local opts="" | 
|  | 387 | opts+=" --config-file $NEUTRON_CONF" | 
|  | 388 | opts+=" --config-file $NEUTRON_CORE_PLUGIN_CONF" | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 389 | local cfg_file | 
|  | 390 | for cfg_file in ${_NEUTRON_SERVER_EXTRA_CONF_FILES_ABS[@]}; do | 
|  | 391 | opts+=" --config-file $cfg_file" | 
|  | 392 | done | 
|  | 393 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 394 | # Start the Neutron service | 
|  | 395 | # TODO(sc68cal) Stop hard coding this | 
| YAMAMOTO Takashi | ed887d8 | 2017-02-22 14:21:33 -0500 | [diff] [blame] | 396 | run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server $opts" | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 397 |  | 
| Sean Dague | f3b2f4c | 2017-04-13 10:11:48 -0400 | [diff] [blame] | 398 | if ! wait_for_service $SERVICE_TIMEOUT $service_protocol://$NEUTRON_SERVICE_HOST:$service_port; then | 
|  | 399 | die $LINENO "neutron-api did not start" | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 400 | fi | 
|  | 401 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 402 | # Start proxy if enabled | 
|  | 403 | if is_service_enabled tls-proxy; then | 
| Gregory Haynes | 4b49e40 | 2016-08-31 18:19:51 -0700 | [diff] [blame] | 404 | start_tls_proxy neutron '*' $NEUTRON_SERVICE_PORT $NEUTRON_SERVICE_HOST $NEUTRON_SERVICE_PORT_INT | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 405 | fi | 
|  | 406 | } | 
|  | 407 |  | 
|  | 408 | # start_neutron() - Start running processes, including screen | 
|  | 409 | function start_neutron_new { | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 410 | # Start up the neutron agents if enabled | 
|  | 411 | # TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins | 
|  | 412 | # can resolve the $NEUTRON_AGENT_BINARY | 
|  | 413 | if is_service_enabled neutron-agent; then | 
| Ihar Hrachyshka | 19f4b3f | 2017-02-23 20:44:18 +0000 | [diff] [blame] | 414 | # TODO(ihrachys) stop loading ml2_conf.ini into agents, instead load agent specific files | 
|  | 415 | run_process neutron-agent "$NEUTRON_BIN_DIR/$NEUTRON_AGENT_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_CORE_PLUGIN_CONF" | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 416 | fi | 
|  | 417 | if is_service_enabled neutron-dhcp; then | 
|  | 418 | neutron_plugin_configure_dhcp_agent $NEUTRON_DHCP_CONF | 
| Ihar Hrachyshka | 19f4b3f | 2017-02-23 20:44:18 +0000 | [diff] [blame] | 419 | run_process neutron-dhcp "$NEUTRON_BIN_DIR/$NEUTRON_DHCP_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_DHCP_CONF" | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 420 | fi | 
|  | 421 | if is_service_enabled neutron-l3; then | 
| Ihar Hrachyshka | 19f4b3f | 2017-02-23 20:44:18 +0000 | [diff] [blame] | 422 | run_process neutron-l3 "$NEUTRON_BIN_DIR/$NEUTRON_L3_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_L3_CONF" | 
| YAMAMOTO Takashi | c07170a | 2016-07-20 19:44:05 +0900 | [diff] [blame] | 423 | fi | 
| YAMAMOTO Takashi | 07edde1 | 2016-10-19 19:21:00 +0000 | [diff] [blame] | 424 | if is_service_enabled neutron-api; then | 
|  | 425 | # XXX(sc68cal) - Here's where plugins can wire up their own networks instead | 
|  | 426 | # of the code in lib/neutron_plugins/services/l3 | 
|  | 427 | if type -p neutron_plugin_create_initial_networks > /dev/null; then | 
|  | 428 | neutron_plugin_create_initial_networks | 
|  | 429 | else | 
|  | 430 | # XXX(sc68cal) Load up the built in Neutron networking code and build a topology | 
|  | 431 | source $TOP_DIR/lib/neutron_plugins/services/l3 | 
|  | 432 | # Create the networks using servic | 
|  | 433 | create_neutron_initial_network | 
|  | 434 | fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 435 | fi | 
| Sean M. Collins | 1cd2828 | 2016-05-11 15:07:19 -0400 | [diff] [blame] | 436 | if is_service_enabled neutron-metadata-agent; then | 
| Ihar Hrachyshka | 19f4b3f | 2017-02-23 20:44:18 +0000 | [diff] [blame] | 437 | run_process neutron-metadata-agent "$NEUTRON_BIN_DIR/$NEUTRON_META_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_META_CONF" | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 438 | fi | 
| Sean M. Collins | 8063fee | 2016-05-24 11:27:36 -0700 | [diff] [blame] | 439 |  | 
|  | 440 | if is_service_enabled neutron-metering; then | 
| Ihar Hrachyshka | bf697f5 | 2017-02-23 12:09:01 +0000 | [diff] [blame] | 441 | run_process neutron-metering "$NEUTRON_METERING_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_METERING_AGENT_CONF" | 
| Sean M. Collins | 8063fee | 2016-05-24 11:27:36 -0700 | [diff] [blame] | 442 | fi | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 443 | } | 
|  | 444 |  | 
|  | 445 | # stop_neutron() - Stop running processes (non-screen) | 
|  | 446 | function stop_neutron_new { | 
|  | 447 | for serv in neutron-api neutron-agent neutron-l3; do | 
|  | 448 | stop_process $serv | 
|  | 449 | done | 
|  | 450 |  | 
|  | 451 | if is_service_enabled neutron-dhcp; then | 
|  | 452 | stop_process neutron-dhcp | 
|  | 453 | pid=$(ps aux | awk '/[d]nsmasq.+interface=(tap|ns-)/ { print $2 }') | 
|  | 454 | [ ! -z "$pid" ] && sudo kill -9 $pid | 
|  | 455 | fi | 
|  | 456 |  | 
| Sean M. Collins | 1cd2828 | 2016-05-11 15:07:19 -0400 | [diff] [blame] | 457 | if is_service_enabled neutron-metadata-agent; then | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 458 | sudo pkill -9 -f neutron-ns-metadata-proxy || : | 
| Sean M. Collins | 1cd2828 | 2016-05-11 15:07:19 -0400 | [diff] [blame] | 459 | stop_process neutron-metadata-agent | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 460 | fi | 
|  | 461 | } | 
|  | 462 |  | 
| YAMAMOTO Takashi | d9ec420 | 2016-07-21 16:14:52 +0900 | [diff] [blame] | 463 | # neutron_service_plugin_class_add() - add service plugin class | 
|  | 464 | function neutron_service_plugin_class_add_new { | 
|  | 465 | local service_plugin_class=$1 | 
|  | 466 | local plugins="" | 
|  | 467 |  | 
|  | 468 | plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins) | 
| YAMAMOTO Takashi | 84e45c9 | 2017-02-22 14:25:14 -0500 | [diff] [blame] | 469 | if [ $plugins ]; then | 
|  | 470 | plugins+="," | 
|  | 471 | fi | 
|  | 472 | plugins+="${service_plugin_class}" | 
| YAMAMOTO Takashi | d9ec420 | 2016-07-21 16:14:52 +0900 | [diff] [blame] | 473 | iniset $NEUTRON_CONF DEFAULT service_plugins $plugins | 
|  | 474 | } | 
|  | 475 |  | 
| Ihar Hrachyshka | f511c36 | 2017-03-07 06:31:49 +0000 | [diff] [blame] | 476 | function _neutron_ml2_extension_driver_add { | 
|  | 477 | local driver=$1 | 
|  | 478 | local drivers="" | 
|  | 479 |  | 
|  | 480 | drivers=$(iniget $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers) | 
|  | 481 | if [ $drivers ]; then | 
|  | 482 | drivers+="," | 
|  | 483 | fi | 
|  | 484 | drivers+="${driver}" | 
|  | 485 | iniset $NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers $drivers | 
|  | 486 | } | 
|  | 487 |  | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 488 | function neutron_server_config_add_new { | 
|  | 489 | _NEUTRON_SERVER_EXTRA_CONF_FILES_ABS+=($1) | 
|  | 490 | } | 
|  | 491 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 492 | # Dispatch functions | 
|  | 493 | # These are needed for compatibility between the old and new implementations | 
|  | 494 | # where there are function name overlaps.  These will be removed when | 
|  | 495 | # neutron-legacy is removed. | 
|  | 496 | # TODO(sc68cal) Remove when neutron-legacy is no more. | 
|  | 497 | function cleanup_neutron { | 
|  | 498 | if is_neutron_legacy_enabled; then | 
|  | 499 | # Call back to old function | 
|  | 500 | cleanup_mutnauq "$@" | 
|  | 501 | else | 
|  | 502 | cleanup_neutron_new "$@" | 
|  | 503 | fi | 
|  | 504 | } | 
|  | 505 |  | 
|  | 506 | function configure_neutron { | 
|  | 507 | if is_neutron_legacy_enabled; then | 
|  | 508 | # Call back to old function | 
|  | 509 | configure_mutnauq "$@" | 
|  | 510 | else | 
|  | 511 | configure_neutron_new "$@" | 
|  | 512 | fi | 
|  | 513 | } | 
|  | 514 |  | 
|  | 515 | function configure_neutron_nova { | 
|  | 516 | if is_neutron_legacy_enabled; then | 
|  | 517 | # Call back to old function | 
|  | 518 | create_nova_conf_neutron "$@" | 
|  | 519 | else | 
|  | 520 | configure_neutron_nova_new "$@" | 
|  | 521 | fi | 
|  | 522 | } | 
|  | 523 |  | 
|  | 524 | function create_neutron_accounts { | 
|  | 525 | if is_neutron_legacy_enabled; then | 
|  | 526 | # Call back to old function | 
|  | 527 | create_mutnauq_accounts "$@" | 
|  | 528 | else | 
|  | 529 | create_neutron_accounts_new "$@" | 
|  | 530 | fi | 
|  | 531 | } | 
|  | 532 |  | 
|  | 533 | function init_neutron { | 
|  | 534 | if is_neutron_legacy_enabled; then | 
|  | 535 | # Call back to old function | 
|  | 536 | init_mutnauq "$@" | 
|  | 537 | else | 
|  | 538 | init_neutron_new "$@" | 
|  | 539 | fi | 
|  | 540 | } | 
|  | 541 |  | 
|  | 542 | function install_neutron { | 
|  | 543 | if is_neutron_legacy_enabled; then | 
|  | 544 | # Call back to old function | 
|  | 545 | install_mutnauq "$@" | 
|  | 546 | else | 
|  | 547 | install_neutron_new "$@" | 
|  | 548 | fi | 
|  | 549 | } | 
|  | 550 |  | 
| YAMAMOTO Takashi | d9ec420 | 2016-07-21 16:14:52 +0900 | [diff] [blame] | 551 | function neutron_service_plugin_class_add { | 
|  | 552 | if is_neutron_legacy_enabled; then | 
|  | 553 | # Call back to old function | 
|  | 554 | _neutron_service_plugin_class_add "$@" | 
|  | 555 | else | 
|  | 556 | neutron_service_plugin_class_add_new "$@" | 
|  | 557 | fi | 
|  | 558 | } | 
|  | 559 |  | 
| Ihar Hrachyshka | f511c36 | 2017-03-07 06:31:49 +0000 | [diff] [blame] | 560 | function neutron_ml2_extension_driver_add { | 
|  | 561 | if is_neutron_legacy_enabled; then | 
|  | 562 | # Call back to old function | 
|  | 563 | _neutron_ml2_extension_driver_add_old "$@" | 
|  | 564 | else | 
|  | 565 | _neutron_ml2_extension_driver_add "$@" | 
|  | 566 | fi | 
|  | 567 | } | 
|  | 568 |  | 
| YAMAMOTO Takashi | c74315e | 2016-07-21 17:49:43 +0900 | [diff] [blame] | 569 | function install_neutron_agent_packages { | 
|  | 570 | if is_neutron_legacy_enabled; then | 
|  | 571 | # Call back to old function | 
|  | 572 | install_neutron_agent_packages_mutnauq "$@" | 
|  | 573 | else | 
|  | 574 | : | 
|  | 575 | fi | 
|  | 576 | } | 
|  | 577 |  | 
| YAMAMOTO Takashi | eede9dd | 2016-07-15 10:27:53 +0900 | [diff] [blame] | 578 | function neutron_server_config_add { | 
|  | 579 | if is_neutron_legacy_enabled; then | 
|  | 580 | # Call back to old function | 
|  | 581 | mutnauq_server_config_add "$@" | 
|  | 582 | else | 
|  | 583 | neutron_server_config_add_new "$@" | 
|  | 584 | fi | 
|  | 585 | } | 
|  | 586 |  | 
| Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 587 | function start_neutron { | 
|  | 588 | if is_neutron_legacy_enabled; then | 
|  | 589 | # Call back to old function | 
|  | 590 | start_mutnauq_l2_agent "$@" | 
|  | 591 | start_mutnauq_other_agents "$@" | 
|  | 592 | else | 
|  | 593 | start_neutron_new "$@" | 
|  | 594 | fi | 
|  | 595 | } | 
|  | 596 |  | 
|  | 597 | function stop_neutron { | 
|  | 598 | if is_neutron_legacy_enabled; then | 
|  | 599 | # Call back to old function | 
|  | 600 | stop_mutnauq "$@" | 
|  | 601 | else | 
|  | 602 | stop_neutron_new "$@" | 
|  | 603 | fi | 
|  | 604 | } | 
|  | 605 |  | 
|  | 606 | # Restore xtrace | 
|  | 607 | $XTRACE |