diff --git a/environments/manager/run.sh b/environments/manager/run.sh index d0c3de4..1324ecb 100755 --- a/environments/manager/run.sh +++ b/environments/manager/run.sh @@ -2,6 +2,7 @@ # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN +ANSIBLE_COLLECTION_COMMONS_VERSION=${ANSIBLE_COLLECTION_COMMONS_VERSION:-main} ANSIBLE_COLLECTION_SERVICES_VERSION=${ANSIBLE_COLLECTION_SERVICES_VERSION:-main} ANSIBLE_PLAYBOOKS_MANAGER_VERSION=${ANSIBLE_PLAYBOOKS_MANAGER_VERSION:-main} @@ -43,6 +44,7 @@ ANSIBLE_USER=${ANSIBLE_USER:-dragon} CLEANUP=${CLEANUP:-false} if [[ $INSTALL_ANSIBLE_ROLES == "true" ]]; then + ansible-galaxy collection install -f "git+https://github.com/osism/ansible-collection-commons,${ANSIBLE_COLLECTION_COMMONS_VERSION}" ansible-galaxy collection install -f "git+https://github.com/osism/ansible-collection-services,${ANSIBLE_COLLECTION_SERVICES_VERSION}" ansible-galaxy collection install -f "git+https://github.com/osism/ansible-playbooks-manager,${ANSIBLE_PLAYBOOKS_MANAGER_VERSION}" fi diff --git a/releasenotes/notes/install-ansible-collection-commons-e7dbdd5c11e632e2.yaml b/releasenotes/notes/install-ansible-collection-commons-e7dbdd5c11e632e2.yaml new file mode 100644 index 0000000..3b1e635 --- /dev/null +++ b/releasenotes/notes/install-ansible-collection-commons-e7dbdd5c11e632e2.yaml @@ -0,0 +1,5 @@ +--- +features: + - | + The `run.sh` script in the manager environment now also installs the + osism.commons Ansible collection.