Fix --tags=start regression

Related to #425 (Github Pull Request)
This commit is contained in:
Slavi Pantaleev 2020-03-29 15:48:46 +03:00
parent a8f4b2a755
commit c655a6467a

View file

@ -28,9 +28,9 @@
delegate_to: 127.0.0.1
become: false
- block:
- name: Populate service facts
service_facts:
when: ansible_distribution != 'Archlinux'
- name: Fail if service isn't detected to be running
fail:
@ -41,8 +41,9 @@
with_items: "{{ matrix_systemd_services_list }}"
when:
- "ansible_facts.services[item + '.service']|default(none) is none or ansible_facts.services[item + '.service'].state != 'running'"
- ansible_distribution != 'Archlinux'
when: " ansible_distribution != 'Archlinux'"
- block:
# Currently there is a bug in ansible that renders is incompatible with systemd.
# service_facts is not collecting the data successfully.
# Therefore iterating here manually
@ -51,8 +52,6 @@
name: "{{ item }}"
register: systemdstatus
with_items: "{{ matrix_systemd_services_list }}"
when:
- ansible_distribution == 'Archlinux'
- name: Fail if service isn't detected to be running
fail:
@ -61,9 +60,5 @@
It's possible that there's a configuration problem or another service on your server interferes with it (uses the same ports, etc.).
Try running `systemctl status {{ item.item }}` and `journalctl -fu {{ item.item }}` on the server to investigate.
with_items: "{{ systemdstatus.results }}"
loop_control:
label: "{{ item.name }}"
when:
#- "ansible_facts.services[item + '.service']|default(none) is none or ansible_facts.services[item + '.service'].state != 'running'"
- "item.status['ActiveState'] != 'active'"
- "ansible_distribution == 'Archlinux'"
when: "item.status['ActiveState'] != 'active'"
when: "ansible_distribution == 'Archlinux'"