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:
Paul Belanger 2017-01-21 17:56:51 -05:00
parent 5f3c220551
commit 1d1636db02
2 changed files with 12 additions and 3 deletions

View File

@ -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]

View File

@ -29,7 +29,7 @@
mode: 0644 mode: 0644
owner: "{{ ssh_user_name }}" owner: "{{ ssh_user_name }}"
src: "{{ ssh_known_hosts_src }}" src: "{{ ssh_known_hosts_src }}"
when: ssh_known_hosts_content when: ssh_known_hosts_content | default('') != ''
- name: Create ssh private key. - name: Create ssh private key.
become: yes become: yes
@ -39,7 +39,7 @@
mode: 0600 mode: 0600
owner: "{{ ssh_user_name }}" owner: "{{ ssh_user_name }}"
src: "{{ ssh_key_private_src }}" src: "{{ ssh_key_private_src }}"
when: ssh_key_private_content when: ssh_key_private_content | default('') != ''
- name: Create ssh public key. - name: Create ssh public key.
become: yes become: yes
@ -49,4 +49,4 @@
mode: 0644 mode: 0644
owner: "{{ ssh_user_name }}" owner: "{{ ssh_user_name }}"
src: "{{ ssh_key_public_src }}" src: "{{ ssh_key_public_src }}"
when: ssh_key_public_content when: ssh_key_public_content | default('') != ''