create default variables, first step for ubuntu support

This commit is contained in:
Geno 2021-03-19 09:48:59 +01:00
parent 90f601eaa0
commit 6a989b6007
2 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,6 @@
---
# webserver_dehydrated_email: "" # required
webserver_php_enabled: False
webserver_tls_enabled: True
webserver_php_enabled: False
webserver_php_ini: /etc/php/php.ini
webserver_php_service: "php-fpm.service"

View File

@ -13,7 +13,7 @@
- name: enable extension
notify: restart php-fpm
lineinfile:
path: /etc/php/php.ini
path: '{{ webserver_php_ini }}'
regexp: ';extension={{ item }}'
line: "extension={{ item }}"
with_items:
@ -32,7 +32,7 @@
- name: enabled and started php-fpm
systemd:
name: php-fpm
name: "{{ webserver_php_service }}"
enabled: yes
state: started