mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-06 10:50:31 -07:00
ci: downstream use correct version
This commit is contained in:
parent
ac0b421456
commit
a23bf4c540
1 changed files with 4 additions and 2 deletions
|
@ -1,6 +1,8 @@
|
|||
---
|
||||
- name: Prepare
|
||||
hosts: all
|
||||
vars:
|
||||
version: "{{ '22.0.6' if rhbk_enable is defined and rhbk_enable else '23.0.1' }}"
|
||||
tasks:
|
||||
- name: Install sudo
|
||||
ansible.builtin.yum:
|
||||
|
@ -19,13 +21,13 @@
|
|||
- name: Create conf directory # risky-file-permissions in test user account does not exist yet
|
||||
ansible.builtin.file:
|
||||
state: directory
|
||||
path: /opt/keycloak/keycloak-23.0.1/conf/
|
||||
path: "/opt/keycloak/keycloak-{{ version }}/conf/"
|
||||
mode: 0755
|
||||
|
||||
- name: Copy certificates
|
||||
ansible.builtin.copy:
|
||||
src: "{{ item }}"
|
||||
dest: "/opt/keycloak/keycloak-23.0.1/conf/{{ item }}"
|
||||
dest: "/opt/keycloak/keycloak-{{ version }}/conf/{{ item }}"
|
||||
mode: 0444
|
||||
loop:
|
||||
- cert.pem
|
||||
|
|
Loading…
Add table
Reference in a new issue