Install Collection

Before using this collection, you need to install it with the Ansible Galaxy command-line tool:

ansible-galaxy collection install ans2dev.general

You can also include it in a requirements.yml file and install it with the command below:

ansible-galaxy collection install -r requirements.yml

using the format:

---
collections:
- name: ans2dev.general

Note that if you install the collection from Ansible Galaxy, it will not be upgraded automatically when you upgrade the ansible package.

To upgrade the collection to the latest available version, run the following command:

ansible-galaxy collection install ans2dev.general --upgrade

You can also install a specific version of the collection. Use the following syntax to install version 0.1.0:

ansible-galaxy collection install ans2dev.general:==0.1.0