├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── ansible.cfg ├── example-inventory.yml ├── example-playbook-requirements.yml ├── example-playbook.yml ├── example-take-ownership-playbook.yml ├── galaxy.yml ├── plugins ├── module_utils │ ├── binary.py │ ├── network.py │ ├── protocol.py │ ├── switch.py │ ├── switch_client.py │ ├── switch_take_ownership.py │ ├── switch_take_ownership_client.py │ └── test_data.py └── modules │ ├── smrt_config.py │ └── smrt_take_ownership.py ├── requirements-test.txt ├── requirements.txt └── tests └── sanity └── ignore-2.11.txt /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .ansible-venv/ 2 | .vscode/ 3 | *.tar.gz 4 | *.pyc 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/ansible.cfg -------------------------------------------------------------------------------- /example-inventory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/example-inventory.yml -------------------------------------------------------------------------------- /example-playbook-requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/example-playbook-requirements.yml -------------------------------------------------------------------------------- /example-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/example-playbook.yml -------------------------------------------------------------------------------- /example-take-ownership-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/example-take-ownership-playbook.yml -------------------------------------------------------------------------------- /galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/galaxy.yml -------------------------------------------------------------------------------- /plugins/module_utils/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/plugins/module_utils/binary.py -------------------------------------------------------------------------------- /plugins/module_utils/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/plugins/module_utils/network.py -------------------------------------------------------------------------------- /plugins/module_utils/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/plugins/module_utils/protocol.py -------------------------------------------------------------------------------- /plugins/module_utils/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/plugins/module_utils/switch.py -------------------------------------------------------------------------------- /plugins/module_utils/switch_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/plugins/module_utils/switch_client.py -------------------------------------------------------------------------------- /plugins/module_utils/switch_take_ownership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/plugins/module_utils/switch_take_ownership.py -------------------------------------------------------------------------------- /plugins/module_utils/switch_take_ownership_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/plugins/module_utils/switch_take_ownership_client.py -------------------------------------------------------------------------------- /plugins/module_utils/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/plugins/module_utils/test_data.py -------------------------------------------------------------------------------- /plugins/modules/smrt_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/plugins/modules/smrt_config.py -------------------------------------------------------------------------------- /plugins/modules/smrt_take_ownership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/plugins/modules/smrt_take_ownership.py -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/sanity/ignore-2.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/ansible-collection-tp-link-easy-smart-switch/HEAD/tests/sanity/ignore-2.11.txt --------------------------------------------------------------------------------