Add custom xml parameter and test scenario

This commit is contained in:
Guido Grazioli 2022-04-12 12:07:06 +02:00
commit 0751b97b87
No known key found for this signature in database
GPG key ID: 22C8C31EF2BC093B
15 changed files with 751 additions and 9 deletions

View file

@ -0,0 +1,11 @@
---
- name: Verify
hosts: all
tasks:
- name: Populate service facts
ansible.builtin.service_facts:
- name: Check if keycloak service started
ansible.builtin.assert:
that:
- ansible_facts.services["keycloak.service"]["state"] == "running"
- ansible_facts.services["keycloak.service"]["status"] == "enabled"