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