mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-06 19:00:28 -07:00
12 lines
267 B
YAML
12 lines
267 B
YAML
---
|
|
- name: Prepare
|
|
hosts: all
|
|
tasks:
|
|
- name: Install sudo
|
|
ansible.builtin.yum:
|
|
name: sudo
|
|
state: present
|
|
|
|
- name: "Display hera_home if defined."
|
|
ansible.builtin.set_fact:
|
|
hera_home: "{{ lookup('env', 'HERA_HOME') }}"
|