| commit | 500337b04bc0bca62641d35290c459227da0a94e | [log] [tgz] |
|---|---|---|
| author | Jenkins <jenkins@review.openstack.org> | Thu May 12 21:47:13 2016 +0000 |
| committer | Gerrit Code Review <review@openstack.org> | Thu May 12 21:47:13 2016 +0000 |
| tree | 474af722b54968a41d652a9ec99898c0795166a6 | |
| parent | 4f4d95a12c5b9de0ea09864c67dcad6a19fb0145 [diff] | |
| parent | 0afe207cb346fe7468d073e2358abd2ad9b9d9e8 [diff] |
Merge "Create service project in service domain"
diff --git a/lib/neutron_plugins/services/l3 b/lib/neutron_plugins/services/l3 index 4c4730e..5ff8ea5 100644 --- a/lib/neutron_plugins/services/l3 +++ b/lib/neutron_plugins/services/l3
@@ -360,3 +360,10 @@ _neutron_set_router_id fi } + +function is_provider_network { + if [ "$Q_USE_PROVIDER_NETWORKING" == "True" ] && [ "$Q_L3_ENABLED" == "False" ]; then + return 0 + fi + return 1 +}