linter: use spaces between filters in jinja
A later version of ansible-lint picks this up; fix lack of whitespace around filters. No operational change. Change-Id: If042a0f92a74ea06a312aad68de21f9e44f16582changes/77/851277/1
parent
76037c434e
commit
ae2b728536
|
@ -9,12 +9,12 @@
|
|||
pre_tasks:
|
||||
- name: Generate AFS slug - CentOS
|
||||
set_fact:
|
||||
afs_slug: "{{ ansible_distribution|lower }}-{{ ansible_distribution_major_version }}-{{ ansible_architecture }}"
|
||||
afs_slug: "{{ ansible_distribution | lower }}-{{ ansible_distribution_major_version }}-{{ ansible_architecture }}"
|
||||
when: ansible_distribution == "CentOS"
|
||||
|
||||
- name: Generate AFS slug - Debuntu
|
||||
set_fact:
|
||||
afs_slug: "{{ ansible_distribution|lower }}-{{ ansible_distribution_version }}-{{ ansible_architecture }}"
|
||||
afs_slug: "{{ ansible_distribution | lower }}-{{ ansible_distribution_version }}-{{ ansible_architecture }}"
|
||||
when: ansible_distribution == "Ubuntu" or
|
||||
ansible_distribution == "Debian"
|
||||
|
||||
|
|
Loading…
Reference in New Issue