diff --git a/playbooks/roles/install-ansible/tasks/main.yaml b/playbooks/roles/install-ansible/tasks/main.yaml index 5cd94183b3..23fdfc0381 100644 --- a/playbooks/roles/install-ansible/tasks/main.yaml +++ b/playbooks/roles/install-ansible/tasks/main.yaml @@ -45,6 +45,15 @@ vars: create_venv_path: '/usr/ansible-venv' +# The boostrap job runs this all the time, and we'd like to skip +# trying to update the venv mostly. But we also want to have things +# like ansible specify '= most of the fun stuff is in collections. Clone diff --git a/playbooks/roles/install-ansible/templates/requirements.txt.j2 b/playbooks/roles/install-ansible/templates/requirements.txt.j2 index bd874beeee..0c83457c2c 100644 --- a/playbooks/roles/install-ansible/templates/requirements.txt.j2 +++ b/playbooks/roles/install-ansible/templates/requirements.txt.j2 @@ -1,3 +1,4 @@ +# Update timestamp: {{ _date.stdout }} {% for r in install_ansible_requirements %} {{ r }} {% endfor %}