From cf0b81bb03415efe3f600fe2fc4a10cee6a9726e Mon Sep 17 00:00:00 2001 From: vincent Date: Sun, 16 Feb 2020 16:22:01 +0100 Subject: [PATCH] finalize nextcloud roles --- defaults/main.yml | 4 +++- tasks/main.yml | 25 ++++++++++++++++++++++++- templates/override.j2 | 4 ++++ 3 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 templates/override.j2 diff --git a/defaults/main.yml b/defaults/main.yml index 02ee5aa..3d2e04f 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -1 +1,3 @@ -php_extention_enable: [] \ No newline at end of file +php_extention_enable: [] +php_memory_limit: 256M +PHP_ReadWritePaths: [] \ No newline at end of file diff --git a/tasks/main.yml b/tasks/main.yml index 64b23b4..c18f08c 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -4,6 +4,7 @@ name: - php - php-fpm + - php-intl state: present become: yes - name: Ensure php-fpm is started and enabled to start at boot. @@ -17,4 +18,26 @@ regexp: "^;extension={{item}}$" replace: "extension={{item}}" with_items: "{{php_extention_enable}}" - notify: reload_php_fpm \ No newline at end of file + notify: reload_php_fpm + +- name: Set PHP memory limit + become: true + lineinfile: + dest: /etc/php/php.ini + regexp: "memory_limit =" + line: "memory_limit = {{php_memory_limit}}" + + +- name: create custom systemd folder + file: + path: /etc/systemd/system/php-fpm.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-fpm.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 diff --git a/templates/override.j2 b/templates/override.j2 new file mode 100644 index 0000000..eede234 --- /dev/null +++ b/templates/override.j2 @@ -0,0 +1,4 @@ +[Service] +{% for item in PHP_ReadWritePaths %} + ReadWritePaths= {{ item }} +{% endfor %}