├── .github ├── dco.yml └── workflows │ └── sanity-check.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── SECURITY.md ├── galaxy.yml ├── meta └── runtime.yml ├── plugins ├── README.md ├── module_utils │ └── psmapi.py └── modules │ ├── zvm_clone_disk.py │ ├── zvm_dedicate_dev.py │ ├── zvm_dirm_nicdef.py │ ├── zvm_fileto_rdr.py │ ├── zvm_minidisk.py │ ├── zvm_reader_empty.py │ ├── zvm_setshare.py │ ├── zvm_startstop_user.py │ ├── zvm_update_user.py │ └── zvm_user.py └── tests └── sanity ├── ignore-2.14.txt ├── ignore-2.15.txt ├── ignore-2.16.txt └── ignore-2.17.txt /.github/dco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/.github/dco.yml -------------------------------------------------------------------------------- /.github/workflows/sanity-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/.github/workflows/sanity-check.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/SECURITY.md -------------------------------------------------------------------------------- /galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/galaxy.yml -------------------------------------------------------------------------------- /meta/runtime.yml: -------------------------------------------------------------------------------- 1 | --- 2 | requires_ansible: '>=2.14.0' 3 | -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/module_utils/psmapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/plugins/module_utils/psmapi.py -------------------------------------------------------------------------------- /plugins/modules/zvm_clone_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/plugins/modules/zvm_clone_disk.py -------------------------------------------------------------------------------- /plugins/modules/zvm_dedicate_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/plugins/modules/zvm_dedicate_dev.py -------------------------------------------------------------------------------- /plugins/modules/zvm_dirm_nicdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/plugins/modules/zvm_dirm_nicdef.py -------------------------------------------------------------------------------- /plugins/modules/zvm_fileto_rdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/plugins/modules/zvm_fileto_rdr.py -------------------------------------------------------------------------------- /plugins/modules/zvm_minidisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/plugins/modules/zvm_minidisk.py -------------------------------------------------------------------------------- /plugins/modules/zvm_reader_empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/plugins/modules/zvm_reader_empty.py -------------------------------------------------------------------------------- /plugins/modules/zvm_setshare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/plugins/modules/zvm_setshare.py -------------------------------------------------------------------------------- /plugins/modules/zvm_startstop_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/plugins/modules/zvm_startstop_user.py -------------------------------------------------------------------------------- /plugins/modules/zvm_update_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/plugins/modules/zvm_update_user.py -------------------------------------------------------------------------------- /plugins/modules/zvm_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/plugins/modules/zvm_user.py -------------------------------------------------------------------------------- /tests/sanity/ignore-2.14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/tests/sanity/ignore-2.14.txt -------------------------------------------------------------------------------- /tests/sanity/ignore-2.15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/tests/sanity/ignore-2.15.txt -------------------------------------------------------------------------------- /tests/sanity/ignore-2.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/tests/sanity/ignore-2.16.txt -------------------------------------------------------------------------------- /tests/sanity/ignore-2.17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zvm_ansible_collection/HEAD/tests/sanity/ignore-2.17.txt --------------------------------------------------------------------------------