Work around 2.2.1.0 regression
There appears to be an issue with upstream ansible, see: https://github.com/ansible/ansible/issues/20392 The following is just a workaround, until upstream fixes our issue. Add bindep.txt to address gate issue around compiling ansible. Change-Id: Icc09164743da0d537c369040510998869486f3b3 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
parent
5f3c220551
commit
1d1636db02
@ -0,0 +1,9 @@
|
||||
# This is a cross-platform list tracking distribution packages needed by tests;
|
||||
# see http://docs.openstack.org/infra/bindep/ for additional information.
|
||||
|
||||
libffi-devel [platform:rpm]
|
||||
libffi-dev [platform:dpkg]
|
||||
libselinux-python [platform:rpm]
|
||||
libssl-dev [platform:dpkg]
|
||||
openssl-devel [platform:rpm]
|
||||
python2-dnf [platform:fedora]
|
@ -29,7 +29,7 @@
|
||||
mode: 0644
|
||||
owner: "{{ ssh_user_name }}"
|
||||
src: "{{ ssh_known_hosts_src }}"
|
||||
when: ssh_known_hosts_content
|
||||
when: ssh_known_hosts_content | default('') != ''
|
||||
|
||||
- name: Create ssh private key.
|
||||
become: yes
|
||||
@ -39,7 +39,7 @@
|
||||
mode: 0600
|
||||
owner: "{{ ssh_user_name }}"
|
||||
src: "{{ ssh_key_private_src }}"
|
||||
when: ssh_key_private_content
|
||||
when: ssh_key_private_content | default('') != ''
|
||||
|
||||
- name: Create ssh public key.
|
||||
become: yes
|
||||
@ -49,4 +49,4 @@
|
||||
mode: 0644
|
||||
owner: "{{ ssh_user_name }}"
|
||||
src: "{{ ssh_key_public_src }}"
|
||||
when: ssh_key_public_content
|
||||
when: ssh_key_public_content | default('') != ''
|
||||
|
Loading…
Reference in New Issue
Block a user