add PHP7 for compatibility tt-rss and nextcloud
This commit is contained in:
commit
c80cb69482
4
defaults/main.yml
Normal file
4
defaults/main.yml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
php_extention_enable: []
|
||||||
|
php_memory_limit: 256M
|
||||||
|
PHP_ReadWritePaths: []
|
||||||
|
php_zend_extention_enable: []
|
0
files/main.yml
Normal file
0
files/main.yml
Normal file
4
handlers/main.yml
Normal file
4
handlers/main.yml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
- name: reload_php_fpm
|
||||||
|
service: name=php-fpm7 state=restarted
|
||||||
|
become: yes
|
0
meta/main.yml
Normal file
0
meta/main.yml
Normal file
57
tasks/main.yml
Normal file
57
tasks/main.yml
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
---
|
||||||
|
- name: Ensure php is installed.
|
||||||
|
pacman:
|
||||||
|
name:
|
||||||
|
- "php7"
|
||||||
|
- "php7-fpm"
|
||||||
|
- "php7-intl"
|
||||||
|
- "php7-imagick"
|
||||||
|
- "php7-pgsql"
|
||||||
|
state: present
|
||||||
|
become: yes
|
||||||
|
|
||||||
|
- name: Ensure php-fpm is started and enabled to start at boot.
|
||||||
|
service:
|
||||||
|
name: php-fpm7
|
||||||
|
enabled: yes
|
||||||
|
become: yes
|
||||||
|
|
||||||
|
- name: enable php extention
|
||||||
|
become: true
|
||||||
|
lineinfile:
|
||||||
|
dest: /etc/php7/php.ini
|
||||||
|
regexp: "^;extension={{item}}$"
|
||||||
|
line: "extension={{item}}"
|
||||||
|
with_items: "{{php_extention_enable}}"
|
||||||
|
notify: reload_php_fpm
|
||||||
|
|
||||||
|
- name: enable php zend_extention
|
||||||
|
become: true
|
||||||
|
lineinfile:
|
||||||
|
dest: /etc/php7/php.ini
|
||||||
|
regexp: "^;zend_extention={{item}}$"
|
||||||
|
line: "zend_extention={{item}}"
|
||||||
|
with_items: "{{php_zend_extention_enable}}"
|
||||||
|
notify: reload_php_fpm
|
||||||
|
|
||||||
|
- name: Set PHP memory limit
|
||||||
|
become: true
|
||||||
|
lineinfile:
|
||||||
|
dest: /etc/php7/php.ini
|
||||||
|
regexp: "memory_limit ="
|
||||||
|
line: "memory_limit = {{php_memory_limit}}"
|
||||||
|
|
||||||
|
|
||||||
|
- name: create custom systemd folder
|
||||||
|
file:
|
||||||
|
path: /etc/systemd/system/php-fpm7.service.d/ # required. Path to the file being managed.
|
||||||
|
state: directory # not required. choices: absent;directory;file;hard;link;touch. If C(directory), all intermediate subdirectories will be created if they do not exist. Since Ansible 1.7 they will be created with the supplied permissions. If C(file), the file will NOT be created if it does not exist; see the C(touch) value or the M(copy) or M(template) module if you want that behavior. If C(link), the symbolic link will be created or changed. Use C(hard) for hardlinks. If C(absent), directories will be recursively deleted, and files or symlinks will be unlinked. Note that C(absent) will not cause C(file) to fail if the C(path) does not exist as the state did not change. If C(touch) (new in 1.4), an empty file will be created if the C(path) does not exist, while an existing file or directory will receive updated file access and modification times (similar to the way `touch` works from the command line).
|
||||||
|
become: yes
|
||||||
|
|
||||||
|
|
||||||
|
- name: apply override file for systemd
|
||||||
|
template:
|
||||||
|
dest: /etc/systemd/system/php-fpm7.service.d/override.conf # required. Location to render the template to on the remote machine.
|
||||||
|
src: override.j2 # required. Path of a Jinja2 formatted template on the Ansible controller. This can be a relative or absolute path.
|
||||||
|
notify: "reload_php_fpm"
|
||||||
|
become: yes
|
0
templates/main.yml
Normal file
0
templates/main.yml
Normal file
4
templates/override.j2
Normal file
4
templates/override.j2
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
[Service]
|
||||||
|
{% for item in PHP_ReadWritePaths %}
|
||||||
|
ReadWritePaths= {{ item }}
|
||||||
|
{% endfor %}
|
0
vars/main.yml
Normal file
0
vars/main.yml
Normal file
Loading…
Reference in New Issue
Block a user