Update folder naming

This commit is contained in:
Sebastian Haderecker
2019-06-29 21:04:45 +00:00
parent 2a4128d77c
commit 7a5a732ece
22 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,25 @@
- name: Install pwgen
apt:
name: pwgen
- name: Install setuptools
apt:
name: python-setuptools
- name: Install pip
apt:
name: python-pip
- name: Install openstacksdk
pip:
name: openstacksdk
- name: Set fact for agent forwarding
set_fact:
agent_forwarding: "{{ lookup('env','SSH_AUTH_SOCK') }}"
- name: Check if agent forwarding is enabled
fail:
msg: Please enable agent forwarding to allow Ansible to connect to the remote host!
ignore_errors: yes
when: agent_forwarding == ""