parent
19abc5f585
commit
03e994b41f
4 changed files with 14 additions and 3 deletions
roles/dokuwiki/tasks
|
@ -1,3 +1,13 @@
|
|||
- name: set php version to target
|
||||
ansible.builtin.set_fact:
|
||||
dokuwiki__php_version: '7.4'
|
||||
when: dokuwiki__php_version is undefined and ansible_facts['distribution'] == "Debian" and ansible_facts['distribution_major_version'] == "11"
|
||||
|
||||
- name: set php version to target
|
||||
ansible.builtin.set_fact:
|
||||
dokuwiki__php_version: '8.2'
|
||||
when: dokuwiki__php_version is undefined and ansible_facts['distribution'] == "Debian" and ansible_facts['distribution_major_version'] == "12"
|
||||
|
||||
- name: Install php-fpm
|
||||
become: true
|
||||
ansible.builtin.apt:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue