Files
@ 3722152897ec
Branch filter:
Location: majic-ansible-roles/roles/common/molecule/default/converge.yml - annotation
3722152897ec
1.6 KiB
text/x-yaml
MAR-218: Disable Ansible lints for prefixed role variable names:
- At this point in time, it does not make much sense to introduce
prefixing and breaking every single role invocation.
- Might be worth revisting down the line, although it would require
understanding a bit more clearly if prefixing has any kind of
special logic handling or it's pure guidelines.
- At this point in time, it does not make much sense to introduce
prefixing and breaking every single role invocation.
- Might be worth revisting down the line, although it would require
understanding a bit more clearly if prefixing has any kind of
special logic handling or it's pure guidelines.
2006d7eebe25 2006d7eebe25 b3b33549d7ca b3b33549d7ca 6b8b1d4c9061 2006d7eebe25 6b8b1d4c9061 a451a3cf2b41 b3b33549d7ca b3b33549d7ca a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 a451a3cf2b41 13816868d19b 13816868d19b 13816868d19b 13816868d19b 13816868d19b 13816868d19b 13816868d19b 13816868d19b 13816868d19b 13816868d19b 13816868d19b 13816868d19b 13816868d19b b4e985d581cf b4e985d581cf b4e985d581cf b4e985d581cf b4e985d581cf b4e985d581cf b4e985d581cf b4e985d581cf b4e985d581cf | ---
- name: Converge
hosts: parameters-mandatory,parameters-optional
become: true
roles:
- common
- name: Converge, test fixtures
hosts: parameters-mandatory,parameters-optional
become: true
tasks:
- name: Set-up directories for testing pip requirements upgrade checks script
file:
path: "{{ item }}"
state: directory
owner: root
group: pipreqcheck
mode: 0750
with_items:
- "/tmp/pip_check_requirements_upgrades"
- "/tmp/pip_check_requirements_upgrades/with_updates"
- "/tmp/pip_check_requirements_upgrades/without_updates"
- name: Deploy files for testing pip requirements upgrade checks script
copy:
src: "{{ item }}"
dest: "/tmp/{{ item }}"
owner: root
group: pipreqcheck
mode: 0640
directory_mode: 0750
with_items:
- "pip_check_requirements_upgrades/with_updates/requirements.in"
- "pip_check_requirements_upgrades/with_updates/requirements.txt"
- "pip_check_requirements_upgrades/without_updates/requirements.in"
- "pip_check_requirements_upgrades/without_updates/requirements.txt"
- name: Install web server for testing connectivity
apt:
name: nginx
state: present
- name: Deploy firewall configuration file for the web server
copy:
src: ferm_http.conf
dest: /etc/ferm/conf.d/99-http.conf
owner: root
group: root
mode: 0640
notify:
- Restart ferm
handlers:
- name: Restart ferm
service:
name: ferm
state: restarted
|