About 1,710,000 results
Open links in new tab
  1. What Ansible command to list or verify installed modules — …

    Apr 6, 2023 · I can't find any info about any command to run, in order to show/confirm what add-on Ansible modules or built-in Ansible modules are installed on my control-node? Regarding …

  2. How to download and install ansible modules? - Stack Overflow

    Mar 16, 2017 · The accepted answer solved the questioner's problem but didn't address the broader scope of the question. How to install an Ansible module? The documentation is …

  3. python - When developing Ansible plugins, how should you use …

    Jan 23, 2024 · from ansible.module_utils.my_shared_code import MySharedCodeClient When you run ansible-playbook, Ansible will merge any files in your local module_utils directories …

  4. What is the difference between shell and command in ansible?

    Jun 19, 2019 · From ansible-lint documentation for the command-instead-of-shell rule. This rule identifies uses of modules instead of a one when this is not really needed. Shell is …

  5. ansible - how to run community modules in awx - Stack Overflow

    Jan 12, 2024 · I have the following module in my ansible playbook that I wish to run using awx: - name: Clean up and Prune everything docker on oasis community.docker.docker_prune: …

  6. A method for listing Ansible modules used by playbooks

    Feb 19, 2021 · The project playbooks, for the most part, are not excessively long, though the project has quite a lot of playbooks and roles. You are right, I was eventually able to suss out …

  7. Location to keep Ansible custom modules - Stack Overflow

    Dec 12, 2018 · The idea is to put everything inside the ansible directory like playbook, roles, inventory details and custom modules into a zip package and its contents should not have any …

  8. How can I share ansible-galaxy collection modules for all users?

    Apr 14, 2023 · By default, ansible looks for collections in ~/.ansible/collections which can be changed using the COLLECTION_PATHS option (check the docs). I'm not sure if ansible …

  9. ansible - ERROR! couldn't resolve module/action . This often …

    username: test name: test state: present and the collection is installed via ansible-galaxy collection install ansible.windows so I can see it at ~/.ansible/collections. However I keep …

  10. Ansible Playbooks vs Roles - Stack Overflow

    Aside from the ansible.cfg living on the Ansible server, how do I add/configure Ansible with available Playbooks/Roles? For instance, when I run ansible-playbook someplaybook.yaml, …