f76cfbab11
This fixes a number of places where we do not have spaces between filters. I think that this is a reasonable rule for readability (I also think it probably was enforced, but maybe later versions got better at detecting it?). These are detected by a later version of Ansible lint; this change should have no operational change to any roles but prepares us to update in a follow-on change. Change-Id: I07e1a109b87adce86f483d14d7e02fcecb8313d5
37 lines
908 B
YAML
37 lines
908 B
YAML
- name: Install gettext package
|
|
package:
|
|
name: gettext
|
|
state: present
|
|
become: yes
|
|
|
|
- name: Check to see if the constraints file exists
|
|
stat:
|
|
path: "{{ constraints_file }}"
|
|
get_checksum: false
|
|
get_mime: false
|
|
get_md5: false
|
|
register: stat_results
|
|
when: constraints_file is defined
|
|
|
|
- name: Fail if constraints file does not exist
|
|
fail:
|
|
msg: "Variable constraints_file is set but file does not exist."
|
|
when:
|
|
- constraints_file is defined
|
|
- not stat_results is skipped and not stat_results.stat.exists
|
|
|
|
- name: Record file location
|
|
set_fact:
|
|
upper_constraints: "-c {{ constraints_file }}"
|
|
when: not stat_results is skipped and stat_results.stat.exists
|
|
|
|
- name: Install babel
|
|
pip:
|
|
name:
|
|
- pbr
|
|
- Babel
|
|
- lxml
|
|
- requests
|
|
virtualenv: "{{ ansible_user_dir }}/.venv"
|
|
extra_args: "{{ upper_constraints | default(omit) }}"
|