mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Remove modules which have ended their deprecation cycle
* Remove code but leave the metadata so that they can be listed as removed in documentation. * Remove removed modules from validate-modules ignore * Remove unittests for the removed nodules * Remove links to removed modules and add list of removed moduels to the 2.9 porting guide
This commit is contained in:
@@ -1,5 +1,18 @@
|
||||
async_wrapper
|
||||
accelerate
|
||||
aos_asn_pool
|
||||
aos_blueprint
|
||||
aos_blueprint_param
|
||||
aos_blueprint_virtnet
|
||||
aos_device
|
||||
aos_external_router
|
||||
aos_ip_pool
|
||||
aos_logical_device
|
||||
aos_logical_device_map
|
||||
aos_login
|
||||
aos_rack_type
|
||||
aos_template
|
||||
azure
|
||||
cl_bond
|
||||
cl_bridge
|
||||
cl_img_install
|
||||
@@ -7,15 +20,23 @@ cl_interface
|
||||
cl_interface_policy
|
||||
cl_license
|
||||
cl_ports
|
||||
cs_nic
|
||||
docker
|
||||
ec2_ami_find
|
||||
ec2_ami_search
|
||||
ec2_facts
|
||||
ec2_vpc
|
||||
nxos_mtu
|
||||
s3
|
||||
azure
|
||||
cs_nic
|
||||
ec2_remote_facts
|
||||
ec2_vpc
|
||||
kubernetes
|
||||
netscaler
|
||||
win_msi
|
||||
nxos_ip_interface
|
||||
nxos_mtu
|
||||
nxos_portchannel
|
||||
nxos_switchport
|
||||
oc
|
||||
os_server_actions
|
||||
panos_nat_policy
|
||||
panos_security_policy
|
||||
s3
|
||||
vsphere_guest
|
||||
win_msi
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
lib/ansible/modules/cloud/amazon/_ec2_ami_find.py E322
|
||||
lib/ansible/modules/cloud/amazon/_ec2_ami_find.py E323
|
||||
lib/ansible/modules/cloud/amazon/aws_api_gateway.py E322
|
||||
lib/ansible/modules/cloud/amazon/aws_application_scaling_policy.py E322
|
||||
lib/ansible/modules/cloud/amazon/aws_application_scaling_policy.py E326
|
||||
@@ -315,9 +313,6 @@ lib/ansible/modules/clustering/consul_kv.py E322
|
||||
lib/ansible/modules/clustering/consul_kv.py E324
|
||||
lib/ansible/modules/clustering/consul_session.py E322
|
||||
lib/ansible/modules/clustering/etcd3.py E326
|
||||
lib/ansible/modules/clustering/k8s/_kubernetes.py E322
|
||||
lib/ansible/modules/clustering/k8s/_kubernetes.py E323
|
||||
lib/ansible/modules/clustering/k8s/_kubernetes.py E324
|
||||
lib/ansible/modules/clustering/znode.py E326
|
||||
lib/ansible/modules/commands/command.py E322
|
||||
lib/ansible/modules/commands/command.py E323
|
||||
@@ -583,7 +578,6 @@ lib/ansible/modules/network/netvisor/pn_vrouterbgp.py E324
|
||||
lib/ansible/modules/network/netvisor/pn_vrouterif.py E324
|
||||
lib/ansible/modules/network/netvisor/pn_vrouterif.py E326
|
||||
lib/ansible/modules/network/netvisor/pn_vrouterlbif.py E324
|
||||
lib/ansible/modules/network/nxos/_nxos_portchannel.py E324
|
||||
lib/ansible/modules/network/nxos/nxos_aaa_server.py E326
|
||||
lib/ansible/modules/network/nxos/nxos_acl.py E326
|
||||
lib/ansible/modules/network/nxos/nxos_bgp.py E324
|
||||
@@ -614,10 +608,6 @@ lib/ansible/modules/network/ordnance/ordnance_config.py E324
|
||||
lib/ansible/modules/network/ordnance/ordnance_facts.py E322
|
||||
lib/ansible/modules/network/ordnance/ordnance_facts.py E324
|
||||
lib/ansible/modules/network/ovs/openvswitch_bridge.py E326
|
||||
lib/ansible/modules/network/panos/_panos_nat_policy.py E324
|
||||
lib/ansible/modules/network/panos/_panos_nat_policy.py E335
|
||||
lib/ansible/modules/network/panos/_panos_security_policy.py E322
|
||||
lib/ansible/modules/network/panos/_panos_security_policy.py E324
|
||||
lib/ansible/modules/network/panos/panos_check.py E324
|
||||
lib/ansible/modules/network/panos/panos_match_rule.py E324
|
||||
lib/ansible/modules/network/panos/panos_match_rule.py E326
|
||||
|
||||
@@ -1,79 +0,0 @@
|
||||
# (c) 2016 Red Hat Inc.
|
||||
#
|
||||
# This file is part of Ansible
|
||||
#
|
||||
# Ansible is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Ansible is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
# Make coding more python3-ish
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
from units.compat.mock import patch
|
||||
from ansible.modules.network.nxos import _nxos_ip_interface
|
||||
from .nxos_module import TestNxosModule, load_fixture, set_module_args
|
||||
|
||||
|
||||
class TestNxosIPInterfaceModule(TestNxosModule):
|
||||
|
||||
module = _nxos_ip_interface
|
||||
|
||||
def setUp(self):
|
||||
super(TestNxosIPInterfaceModule, self).setUp()
|
||||
|
||||
self.mock_get_interface_mode = patch(
|
||||
'ansible.modules.network.nxos._nxos_ip_interface.get_interface_mode')
|
||||
self.get_interface_mode = self.mock_get_interface_mode.start()
|
||||
|
||||
self.mock_send_show_command = patch(
|
||||
'ansible.modules.network.nxos._nxos_ip_interface.send_show_command')
|
||||
self.send_show_command = self.mock_send_show_command.start()
|
||||
|
||||
self.mock_load_config = patch('ansible.modules.network.nxos._nxos_ip_interface.load_config')
|
||||
self.load_config = self.mock_load_config.start()
|
||||
|
||||
self.mock_get_capabilities = patch('ansible.modules.network.nxos._nxos_ip_interface.get_capabilities')
|
||||
self.get_capabilities = self.mock_get_capabilities.start()
|
||||
self.get_capabilities.return_value = {'network_api': 'cliconf'}
|
||||
|
||||
def tearDown(self):
|
||||
super(TestNxosIPInterfaceModule, self).tearDown()
|
||||
self.mock_get_interface_mode.stop()
|
||||
self.mock_send_show_command.stop()
|
||||
self.mock_load_config.stop()
|
||||
self.mock_get_capabilities.stop()
|
||||
|
||||
def load_fixtures(self, commands=None, device=''):
|
||||
self.get_interface_mode.return_value = 'layer3'
|
||||
self.send_show_command.return_value = [load_fixture('', '_nxos_ip_interface.cfg')]
|
||||
self.load_config.return_value = None
|
||||
|
||||
def test_nxos_ip_interface_ip_present(self):
|
||||
set_module_args(dict(interface='eth2/1', addr='1.1.1.2', mask=8))
|
||||
result = self.execute_module(changed=True)
|
||||
self.assertEqual(result['commands'],
|
||||
['interface eth2/1',
|
||||
'no ip address 192.0.2.1/8',
|
||||
'ip address 1.1.1.2/8'])
|
||||
|
||||
def test_nxos_ip_interface_ip_idempotent(self):
|
||||
set_module_args(dict(interface='eth2/1', addr='192.0.2.1', mask=8))
|
||||
result = self.execute_module(changed=False)
|
||||
self.assertEqual(result['commands'], [])
|
||||
|
||||
def test_nxos_ip_interface_ip_absent(self):
|
||||
set_module_args(dict(interface='eth2/1', state='absent',
|
||||
addr='192.0.2.1', mask=8))
|
||||
result = self.execute_module(changed=True)
|
||||
self.assertEqual(result['commands'],
|
||||
['interface eth2/1', 'no ip address 192.0.2.1/8'])
|
||||
@@ -1,67 +0,0 @@
|
||||
# (c) 2016 Red Hat Inc.
|
||||
#
|
||||
# This file is part of Ansible
|
||||
#
|
||||
# Ansible is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Ansible is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
# Make coding more python3-ish
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
from units.compat.mock import patch
|
||||
from ansible.modules.network.nxos import _nxos_portchannel
|
||||
from .nxos_module import TestNxosModule, set_module_args
|
||||
|
||||
|
||||
class TestNxosPortchannelModule(TestNxosModule):
|
||||
|
||||
module = _nxos_portchannel
|
||||
|
||||
def setUp(self):
|
||||
super(TestNxosPortchannelModule, self).setUp()
|
||||
|
||||
self.mock_run_commands = patch('ansible.modules.network.nxos._nxos_portchannel.run_commands')
|
||||
self.run_commands = self.mock_run_commands.start()
|
||||
|
||||
self.mock_load_config = patch('ansible.modules.network.nxos._nxos_portchannel.load_config')
|
||||
self.load_config = self.mock_load_config.start()
|
||||
|
||||
self.mock_get_config = patch('ansible.modules.network.nxos._nxos_portchannel.get_config')
|
||||
self.get_config = self.mock_get_config.start()
|
||||
|
||||
self.mock_get_capabilities = patch('ansible.modules.network.nxos._nxos_portchannel.get_capabilities')
|
||||
self.get_capabilities = self.mock_get_capabilities.start()
|
||||
self.get_capabilities.return_value = {'network_api': 'cliconf'}
|
||||
|
||||
def tearDown(self):
|
||||
super(TestNxosPortchannelModule, self).tearDown()
|
||||
self.mock_run_commands.stop()
|
||||
self.mock_load_config.stop()
|
||||
self.mock_get_config.stop()
|
||||
self.mock_get_capabilities.stop()
|
||||
|
||||
def load_fixtures(self, commands=None, device=''):
|
||||
self.load_config.return_value = None
|
||||
|
||||
def test_nxos_portchannel(self):
|
||||
set_module_args(dict(group='99',
|
||||
members=['Ethernet2/1', 'Ethernet2/2'],
|
||||
mode='active',
|
||||
state='present'))
|
||||
result = self.execute_module(changed=True)
|
||||
self.assertEqual(result['commands'], ['interface port-channel99',
|
||||
'interface Ethernet2/1',
|
||||
'channel-group 99 mode active',
|
||||
'interface Ethernet2/2',
|
||||
'channel-group 99 mode active'])
|
||||
@@ -1,80 +0,0 @@
|
||||
# (c) 2016 Red Hat Inc.
|
||||
#
|
||||
# This file is part of Ansible
|
||||
#
|
||||
# Ansible is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Ansible is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
# Make coding more python3-ish
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
from units.compat.mock import patch
|
||||
from ansible.modules.network.nxos import _nxos_switchport
|
||||
from .nxos_module import TestNxosModule, load_fixture, set_module_args
|
||||
|
||||
|
||||
class TestNxosSwitchportModule(TestNxosModule):
|
||||
|
||||
module = _nxos_switchport
|
||||
|
||||
def setUp(self):
|
||||
super(TestNxosSwitchportModule, self).setUp()
|
||||
|
||||
self.mock_run_commands = patch('ansible.modules.network.nxos._nxos_switchport.run_commands')
|
||||
self.run_commands = self.mock_run_commands.start()
|
||||
|
||||
self.mock_load_config = patch('ansible.modules.network.nxos._nxos_switchport.load_config')
|
||||
self.load_config = self.mock_load_config.start()
|
||||
|
||||
self.mock_get_capabilities = patch('ansible.modules.network.nxos._nxos_switchport.get_capabilities')
|
||||
self.get_capabilities = self.mock_get_capabilities.start()
|
||||
self.get_capabilities.return_value = {'network_api': 'cliconf'}
|
||||
|
||||
def tearDown(self):
|
||||
super(TestNxosSwitchportModule, self).tearDown()
|
||||
self.mock_run_commands.stop()
|
||||
self.mock_load_config.stop()
|
||||
self.mock_get_capabilities.stop()
|
||||
|
||||
def load_fixtures(self, commands=None, device=''):
|
||||
def load_from_file(*args, **kwargs):
|
||||
module, commands = args
|
||||
output = list()
|
||||
for command in commands:
|
||||
filename = str(command).split(' | ')[0].replace(' ', '_')
|
||||
filename = filename.replace('2/1', '')
|
||||
output.append(load_fixture('_nxos_switchport', filename))
|
||||
return output
|
||||
|
||||
self.run_commands.side_effect = load_from_file
|
||||
self.load_config.return_value = None
|
||||
|
||||
def test_nxos_switchport_present(self):
|
||||
set_module_args(dict(interface='Ethernet2/1', mode='access', access_vlan=1, state='present'))
|
||||
result = self.execute_module(changed=True)
|
||||
self.assertEqual(result['commands'], ['interface ethernet2/1', 'switchport access vlan 1'])
|
||||
|
||||
def test_nxos_switchport_unconfigured(self):
|
||||
set_module_args(dict(interface='Ethernet2/1', state='unconfigured'))
|
||||
result = self.execute_module(changed=True)
|
||||
self.assertEqual(result['commands'], ['interface ethernet2/1',
|
||||
'switchport mode access',
|
||||
'switch access vlan 1',
|
||||
'switchport trunk native vlan 1',
|
||||
'switchport trunk allowed vlan all'])
|
||||
|
||||
def test_nxos_switchport_absent(self):
|
||||
set_module_args(dict(interface='Ethernet2/1', mode='access', access_vlan=3, state='absent'))
|
||||
result = self.execute_module(changed=False)
|
||||
self.assertEqual(result['commands'], [])
|
||||
Reference in New Issue
Block a user