829297c37a
Did didn't have ansible-lint setup properly, as a results our roles weren't actually linted properly. Fix variable linting issues and ignore ANSIBLE0012. Change-Id: I07aa940245e700c9f08df0f1920720f0ed9d3de0 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
22 lines
647 B
YAML
22 lines
647 B
YAML
- name: Get list of packages to install from bindep
|
|
command: "{{ bindep_run }}"
|
|
register: bindep_output
|
|
failed_when: false
|
|
|
|
- name: Install distro packages from bindep
|
|
package:
|
|
name: "{{ bindep_output.stdout_lines }}"
|
|
state: present
|
|
become: yes
|
|
|
|
- name: Check that packages are installed
|
|
command: "{{ bindep_run }}"
|
|
register: bindep_final_check
|
|
# Ignore errors then fail later so that we can give a better error message
|
|
failed_when: false
|
|
|
|
- name: Fail if we cannot install all packages
|
|
fail:
|
|
msg: "bindep failed to install from {{ bindep_file}} - {{ bindep_final_check.stdout }}"
|
|
when: bindep_final_check|failed
|