767859ddb9
Fixes bug 1091605 The utility should be called after rebooting an appliance. This will purge the openvswicth of configured tap devices. A configuration variable quantum_ports has been added. This is by default True which indicates that only Quantum ports will be deleted from the OVS. If this is set as False then all ports on the bridge will be deleted. Change-Id: I442f64cf82f95bfa99d7765eb09db1ce2ecf602e
146 lines
5.4 KiB
Python
146 lines
5.4 KiB
Python
# Copyright 2011 OpenStack, LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import setuptools
|
|
|
|
from quantum.openstack.common import setup
|
|
from quantum.version import version_info as version
|
|
|
|
requires = setup.parse_requirements()
|
|
depend_links = setup.parse_dependency_links()
|
|
|
|
Name = 'quantum'
|
|
Url = "https://launchpad.net/quantum"
|
|
Version = version.canonical_version_string(always=True)
|
|
License = 'Apache License 2.0'
|
|
Author = 'Netstack'
|
|
AuthorEmail = 'netstack@lists.launchpad.net'
|
|
Maintainer = ''
|
|
Summary = 'Quantum (virtual network service)'
|
|
ShortDescription = Summary
|
|
Description = Summary
|
|
|
|
EagerResources = [
|
|
'quantum',
|
|
]
|
|
|
|
ProjectScripts = [
|
|
'bin/quantum-rootwrap',
|
|
]
|
|
|
|
config_path = 'etc/quantum/'
|
|
init_path = 'etc/init.d'
|
|
rootwrap_path = 'etc/quantum/rootwrap.d'
|
|
ovs_plugin_config_path = 'etc/quantum/plugins/openvswitch'
|
|
bigswitch_plugin_config_path = 'etc/quantum/plugins/bigswitch'
|
|
cisco_plugin_config_path = 'etc/quantum/plugins/cisco'
|
|
linuxbridge_plugin_config_path = 'etc/quantum/plugins/linuxbridge'
|
|
nvp_plugin_config_path = 'etc/quantum/plugins/nicira'
|
|
ryu_plugin_config_path = 'etc/quantum/plugins/ryu'
|
|
meta_plugin_config_path = 'etc/quantum/plugins/metaplugin'
|
|
nec_plugin_config_path = 'etc/quantum/plugins/nec'
|
|
|
|
DataFiles = [
|
|
(config_path,
|
|
['etc/quantum.conf',
|
|
'etc/rootwrap.conf',
|
|
'etc/api-paste.ini',
|
|
'etc/policy.json',
|
|
'etc/dhcp_agent.ini',
|
|
'etc/l3_agent.ini',
|
|
'etc/metadata_agent.ini']),
|
|
(rootwrap_path,
|
|
['etc/quantum/rootwrap.d/dhcp.filters',
|
|
'etc/quantum/rootwrap.d/iptables-firewall.filters',
|
|
'etc/quantum/rootwrap.d/l3.filters',
|
|
'etc/quantum/rootwrap.d/linuxbridge-plugin.filters',
|
|
'etc/quantum/rootwrap.d/nec-plugin.filters',
|
|
'etc/quantum/rootwrap.d/openvswitch-plugin.filters',
|
|
'etc/quantum/rootwrap.d/ryu-plugin.filters']),
|
|
(init_path, ['etc/init.d/quantum-server']),
|
|
(ovs_plugin_config_path,
|
|
['etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini']),
|
|
(cisco_plugin_config_path,
|
|
['etc/quantum/plugins/cisco/credentials.ini',
|
|
'etc/quantum/plugins/cisco/l2network_plugin.ini',
|
|
'etc/quantum/plugins/cisco/nexus.ini',
|
|
'etc/quantum/plugins/cisco/ucs.ini',
|
|
'etc/quantum/plugins/cisco/cisco_plugins.ini',
|
|
'etc/quantum/plugins/cisco/db_conn.ini']),
|
|
(bigswitch_plugin_config_path,
|
|
['etc/quantum/plugins/bigswitch/restproxy.ini']),
|
|
(linuxbridge_plugin_config_path,
|
|
['etc/quantum/plugins/linuxbridge/linuxbridge_conf.ini']),
|
|
(nvp_plugin_config_path,
|
|
['etc/quantum/plugins/nicira/nvp.ini']),
|
|
(ryu_plugin_config_path, ['etc/quantum/plugins/ryu/ryu.ini']),
|
|
(meta_plugin_config_path,
|
|
['etc/quantum/plugins/metaplugin/metaplugin.ini']),
|
|
(nec_plugin_config_path, ['etc/quantum/plugins/nec/nec.ini']),
|
|
]
|
|
|
|
setuptools.setup(
|
|
name=Name,
|
|
version=Version,
|
|
url=Url,
|
|
author=Author,
|
|
author_email=AuthorEmail,
|
|
description=ShortDescription,
|
|
long_description=Description,
|
|
license=License,
|
|
classifiers=[
|
|
'Environment :: OpenStack',
|
|
'Intended Audience :: System Administrators',
|
|
'Intended Audience :: Information Technology',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Operating System :: POSIX :: Linux',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.7',
|
|
],
|
|
scripts=ProjectScripts,
|
|
install_requires=requires,
|
|
dependency_links=depend_links,
|
|
include_package_data=False,
|
|
setup_requires=['setuptools_git>=0.4'],
|
|
packages=setuptools.find_packages('.'),
|
|
cmdclass=setup.get_cmdclass(),
|
|
data_files=DataFiles,
|
|
eager_resources=EagerResources,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'quantum-dhcp-agent = quantum.agent.dhcp_agent:main',
|
|
'quantum-dhcp-agent-dnsmasq-lease-update ='
|
|
'quantum.agent.linux.dhcp:Dnsmasq.lease_update',
|
|
'quantum-netns-cleanup = quantum.agent.netns_cleanup_util:main',
|
|
'quantum-l3-agent = quantum.agent.l3_agent:main',
|
|
'quantum-linuxbridge-agent ='
|
|
'quantum.plugins.linuxbridge.agent.linuxbridge_quantum_agent:main',
|
|
'quantum-metadata-agent ='
|
|
'quantum.agent.metadata.agent:main',
|
|
'quantum-ns-metadata-proxy ='
|
|
'quantum.agent.metadata.namespace_proxy:main',
|
|
'quantum-openvswitch-agent ='
|
|
'quantum.plugins.openvswitch.agent.ovs_quantum_agent:main',
|
|
'quantum-ryu-agent = '
|
|
'quantum.plugins.ryu.agent.ryu_quantum_agent:main',
|
|
'quantum-nec-agent = '
|
|
'quantum.plugins.nec.agent.nec_quantum_agent:main',
|
|
'quantum-server = quantum.server:main',
|
|
'quantum-debug = quantum.debug.shell:main',
|
|
'quantum-ovs-cleanup = quantum.agent.ovs_cleanup_util:main',
|
|
]
|
|
},
|
|
)
|