├── .bandit.yml ├── .dockerignore ├── .flake8 ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── .yamllint.yml ├── CHANGELOG.rst ├── CODE_OF_CONDUCT ├── Dockerfile ├── FILES.json ├── LICENSE ├── MANIFEST.json ├── README.md ├── changelogs ├── .plugin-cache.yaml ├── changelog.yaml └── config.yaml ├── galaxy.yml ├── hacking ├── black.sh ├── build.sh └── local-test.sh ├── meta └── runtime.yml ├── networktocode-netauto-1.0.0.tar.gz ├── plugins ├── README.md ├── action │ └── jdiff.py ├── doc_fragments │ └── netauto.py ├── module_utils │ └── args_common.py └── modules │ ├── jdiff.py │ ├── ntc_config_command.py │ ├── ntc_file_copy.py │ ├── ntc_install_os.py │ ├── ntc_reboot.py │ ├── ntc_rollback.py │ ├── ntc_save_config.py │ ├── ntc_show_command.py │ └── ntc_validate_schema.py ├── poetry.lock ├── pyproject.toml ├── release.md ├── tasks.py └── tests ├── integration └── targets │ └── jdiff.yml ├── sanity ├── ignore-2.10.txt ├── ignore-2.11.txt ├── ignore-2.12.txt └── ignore-2.9.txt └── unit ├── action └── test_jdiff.py ├── filter └── test_version.py └── modules └── .gitkeep /.bandit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/.bandit.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/.gitignore -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/CODE_OF_CONDUCT -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/Dockerfile -------------------------------------------------------------------------------- /FILES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/FILES.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/MANIFEST.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/README.md -------------------------------------------------------------------------------- /changelogs/.plugin-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/changelogs/.plugin-cache.yaml -------------------------------------------------------------------------------- /changelogs/changelog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/changelogs/changelog.yaml -------------------------------------------------------------------------------- /changelogs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/changelogs/config.yaml -------------------------------------------------------------------------------- /galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/galaxy.yml -------------------------------------------------------------------------------- /hacking/black.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/hacking/black.sh -------------------------------------------------------------------------------- /hacking/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/hacking/build.sh -------------------------------------------------------------------------------- /hacking/local-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/hacking/local-test.sh -------------------------------------------------------------------------------- /meta/runtime.yml: -------------------------------------------------------------------------------- 1 | --- 2 | requires_ansible: ">=2.9.10" 3 | -------------------------------------------------------------------------------- /networktocode-netauto-1.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/networktocode-netauto-1.0.0.tar.gz -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/action/jdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/plugins/action/jdiff.py -------------------------------------------------------------------------------- /plugins/doc_fragments/netauto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/plugins/doc_fragments/netauto.py -------------------------------------------------------------------------------- /plugins/module_utils/args_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/plugins/module_utils/args_common.py -------------------------------------------------------------------------------- /plugins/modules/jdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/plugins/modules/jdiff.py -------------------------------------------------------------------------------- /plugins/modules/ntc_config_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/plugins/modules/ntc_config_command.py -------------------------------------------------------------------------------- /plugins/modules/ntc_file_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/plugins/modules/ntc_file_copy.py -------------------------------------------------------------------------------- /plugins/modules/ntc_install_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/plugins/modules/ntc_install_os.py -------------------------------------------------------------------------------- /plugins/modules/ntc_reboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/plugins/modules/ntc_reboot.py -------------------------------------------------------------------------------- /plugins/modules/ntc_rollback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/plugins/modules/ntc_rollback.py -------------------------------------------------------------------------------- /plugins/modules/ntc_save_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/plugins/modules/ntc_save_config.py -------------------------------------------------------------------------------- /plugins/modules/ntc_show_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/plugins/modules/ntc_show_command.py -------------------------------------------------------------------------------- /plugins/modules/ntc_validate_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/plugins/modules/ntc_validate_schema.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/release.md -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/integration/targets/jdiff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/tests/integration/targets/jdiff.yml -------------------------------------------------------------------------------- /tests/sanity/ignore-2.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/tests/sanity/ignore-2.10.txt -------------------------------------------------------------------------------- /tests/sanity/ignore-2.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/tests/sanity/ignore-2.11.txt -------------------------------------------------------------------------------- /tests/sanity/ignore-2.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/tests/sanity/ignore-2.12.txt -------------------------------------------------------------------------------- /tests/sanity/ignore-2.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/tests/sanity/ignore-2.9.txt -------------------------------------------------------------------------------- /tests/unit/action/test_jdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/tests/unit/action/test_jdiff.py -------------------------------------------------------------------------------- /tests/unit/filter/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-ansible/HEAD/tests/unit/filter/test_version.py -------------------------------------------------------------------------------- /tests/unit/modules/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------