tripleo-quickstart-extras/roles/validate-services/tasks/systemd.yaml

11 lines
261 B
YAML

---
- name: Get failed services from Systemd
shell: >
systemctl list-units --failed --plain --no-legend --no-pager
register: systemd_state
- name: Fails if we find failed systemd units
assert:
that:
- systemd_state.stdout_lines|length == 0