mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-07-24 22:00:31 -07:00
fix: use FQCN
This commit is contained in:
parent
73bbca9fc1
commit
b90684a44a
21 changed files with 84 additions and 79 deletions
|
@ -3,10 +3,10 @@
|
|||
hosts: all
|
||||
tasks:
|
||||
- name: Disable beta repos
|
||||
command: yum config-manager --disable '*beta*'
|
||||
ansible.builtin.command: yum config-manager --disable '*beta*'
|
||||
ignore_errors: yes
|
||||
|
||||
- name: Install sudo
|
||||
yum:
|
||||
ansible.builtin.yum:
|
||||
name: sudo
|
||||
state: present
|
||||
|
|
|
@ -5,6 +5,6 @@
|
|||
- name: Populate service facts
|
||||
ansible.builtin.service_facts:
|
||||
- name: Check if keycloak service started
|
||||
assert:
|
||||
ansible.builtin.assert:
|
||||
that:
|
||||
- ansible_facts.services["keycloak.service"]["state"] == "running"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue