mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-10-02 14:33:30 -07:00
Add base role and playbook, molecule configuration
This commit is contained in:
parent
b23c54409f
commit
187473447d
35 changed files with 3658 additions and 0 deletions
17
roles/keycloak/tasks/fastpackages/install.yml
Normal file
17
roles/keycloak/tasks/fastpackages/install.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
- set_fact:
|
||||
update_cache: true
|
||||
packages_to_install: []
|
||||
|
||||
- name: "Check packages to be installed"
|
||||
include_tasks: check.yml
|
||||
loop: "{{ packages_list | flatten }}"
|
||||
loop_control:
|
||||
loop_var: package_name
|
||||
|
||||
- name: "Install packages: {{ packages_to_install }}"
|
||||
become: yes
|
||||
yum:
|
||||
name: "{{ packages_to_install }}"
|
||||
state: present
|
||||
when: packages_to_install | length > 0
|
Loading…
Add table
Add a link
Reference in a new issue