Use FQCNs

This commit is contained in:
Sebastian Haderecker
2021-02-13 17:46:28 +01:00
parent bb8d2f27c6
commit b014f73045
7 changed files with 26 additions and 26 deletions

View File

@ -1,5 +1,5 @@
- name: Install dependencies
package:
ansible.builtin.package:
name:
- gcc
- python3-dev
@ -8,12 +8,12 @@
state: present
- name: Install openstacksdk
pip:
ansible.builtin.pip:
name: openstacksdk
executable: pip3
- name: Check if agent forwarding is enabled
fail:
ansible.builtin.fail:
msg: Please enable agent forwarding to allow Ansible to connect to the remote host!
ignore_errors: yes
when: lookup('env','SSH_AUTH_SOCK') == ""