024802aafd
The neutron.common.rpc module has been in neutron-lib for awhile now and neutron is shimmed to use neutron-lib already. This patch removes neutron.common.rpc and switches the code over to use neutron-lib's implementation where needed. NeutronLibImpact Change-Id: I733f07a8c4a2af071b3467bd710290eee11a4f4c
50 lines
1.7 KiB
Python
50 lines
1.7 KiB
Python
# Copyright (c) 2012 New Dream Network, LLC (DreamHost)
|
|
# All Rights Reserved.
|
|
#
|
|
# 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.
|
|
"""Cron script to generate usage notifications for networks, ports and
|
|
subnets.
|
|
|
|
"""
|
|
|
|
import sys
|
|
|
|
from neutron_lib import context
|
|
from neutron_lib.plugins import constants
|
|
from neutron_lib.plugins import directory
|
|
from neutron_lib import rpc as n_rpc
|
|
|
|
from neutron.common import config
|
|
from neutron import manager
|
|
|
|
|
|
def main():
|
|
config.init(sys.argv[1:])
|
|
config.setup_logging()
|
|
|
|
cxt = context.get_admin_context()
|
|
manager.init()
|
|
plugin = directory.get_plugin()
|
|
l3_plugin = directory.get_plugin(constants.L3)
|
|
notifier = n_rpc.get_notifier('network')
|
|
for network in plugin.get_networks(cxt):
|
|
notifier.info(cxt, 'network.exists', {'network': network})
|
|
for subnet in plugin.get_subnets(cxt):
|
|
notifier.info(cxt, 'subnet.exists', {'subnet': subnet})
|
|
for port in plugin.get_ports(cxt):
|
|
notifier.info(cxt, 'port.exists', {'port': port})
|
|
for router in l3_plugin.get_routers(cxt):
|
|
notifier.info(cxt, 'router.exists', {'router': router})
|
|
for floatingip in l3_plugin.get_floatingips(cxt):
|
|
notifier.info(cxt, 'floatingip.exists', {'floatingip': floatingip})
|