add override directories

This commit is contained in:
Jayne Passmore 2025-04-24 19:58:49 -05:00
parent c98ed6326f
commit 7dabec8310

View file

@ -47,6 +47,11 @@
src: files/fpm-nextcloud.conf src: files/fpm-nextcloud.conf
dest: /etc/php-legacy/php-fpm.d/nextcloud.conf dest: /etc/php-legacy/php-fpm.d/nextcloud.conf
- name: ensure php-fpm-legacy override directory exists
ansible.builtin.file:
path: /etc/systemd/system/php-fpm-legacy.service.d/
state: directory
- name: deploy php-fpm systemd override - name: deploy php-fpm systemd override
ansible.builtin.copy: ansible.builtin.copy:
src: files/php-fpm-override.conf src: files/php-fpm-override.conf
@ -59,6 +64,11 @@
dest: /etc/nginx/conf.d/nextcloud.conf dest: /etc/nginx/conf.d/nextcloud.conf
#notify nginx #notify nginx
- name: ensure nextcloud-cron override directory exists
ansible.builtin.file:
path: /etc/systemd/system/nextcloud-cron.service.d/
state: directory
- name: deploy nextcloud cron override - name: deploy nextcloud cron override
ansible.builtin.copy: ansible.builtin.copy:
src: files/nextcloud-cron-override.conf src: files/nextcloud-cron-override.conf