diff --git a/hooks/quantum_utils.py b/hooks/quantum_utils.py index e3726260..d369d9ca 100644 --- a/hooks/quantum_utils.py +++ b/hooks/quantum_utils.py @@ -1151,22 +1151,3 @@ def git_post_install(projects_yaml): render('git/upstart/neutron-agent.upstart', '/etc/init/neutron-vpn-agent.conf', neutron_vpn_agent_context, perms=0o644) - - service_restart('neutron-dhcp-agent') - service_restart('neutron-l3-agent') - service_restart('neutron-lbaas-agent') - service_restart('neutron-metadata-agent') - service_restart('neutron-metering-agent') - service_restart('neutron-ovs-cleanup') - service_restart('neutron-plugin-bigswitch') - service_restart('neutron-plugin-ibm-agent') - service_restart('neutron-plugin-linuxbridge-agent') - service_restart('neutron-plugin-mlnx-agent') - service_restart('neutron-plugin-nec-agent') - service_restart('neutron-plugin-oneconvergence-agent') - service_restart('neutron-plugin-openflow-agent') - service_restart('neutron-plugin-openvswitch-agent') - service_restart('neutron-plugin-ryu-agent') - service_restart('neutron-plugin-sriov-agent') - service_restart('neutron-server') - service_restart('neutron-vpn-agent') diff --git a/unit_tests/test_quantum_utils.py b/unit_tests/test_quantum_utils.py index 7af25565..63bfbde0 100644 --- a/unit_tests/test_quantum_utils.py +++ b/unit_tests/test_quantum_utils.py @@ -1074,24 +1074,3 @@ class TestQuantumAgentReallocation(CharmTestCase): neutron_vpn_agent_context, perms=0o644), ] self.assertEquals(render.call_args_list, expected) - expected = [ - call('neutron-dhcp-agent'), - call('neutron-l3-agent'), - call('neutron-lbaas-agent'), - call('neutron-metadata-agent'), - call('neutron-metering-agent'), - call('neutron-ovs-cleanup'), - call('neutron-plugin-bigswitch'), - call('neutron-plugin-ibm-agent'), - call('neutron-plugin-linuxbridge-agent'), - call('neutron-plugin-mlnx-agent'), - call('neutron-plugin-nec-agent'), - call('neutron-plugin-oneconvergence-agent'), - call('neutron-plugin-openflow-agent'), - call('neutron-plugin-openvswitch-agent'), - call('neutron-plugin-ryu-agent'), - call('neutron-plugin-sriov-agent'), - call('neutron-server'), - call('neutron-vpn-agent'), - ] - self.assertEquals(self.service_restart.call_args_list, expected)