From 45ab3c5f297c3a5bda3ccea3da1c019f6f748a37 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Thu, 11 Aug 2022 09:00:06 +0200 Subject: [PATCH] Update to 2022-08-11 09:00 --- roles/docker_wordpress/tasks/main.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/roles/docker_wordpress/tasks/main.yml b/roles/docker_wordpress/tasks/main.yml index 80573ca..9d05863 100644 --- a/roles/docker_wordpress/tasks/main.yml +++ b/roles/docker_wordpress/tasks/main.yml @@ -26,23 +26,23 @@ group: wheel mode: '0644' - - name: Create custom PHP config file for each containers - with_items: "{{ wh_docker }}" - file: - path: "{{ wh_docker_root_dir }}/wordpress/{{ item.wh_docker_name }}/custom.ini" - state: touch - owner: bin - group: wheel - mode: '0644' - - - name: Create custom CRON config file for each containers - with_items: "{{ wh_docker }}" - file: - path: "{{ wh_docker_root_dir }}/wordpress/{{ item.wh_docker_name }}/custom_cron" - state: touch - owner: bin - group: wheel - mode: '0644' + - name: Create custom PHP config file for each containers + with_items: "{{ wh_docker }}" + file: + path: "{{ wh_docker_root_dir }}/wordpress/{{ item.wh_docker_name }}/custom.ini" + state: touch + owner: bin + group: wheel + mode: '0644' + + - name: Create custom CRON config file for each containers + with_items: "{{ wh_docker }}" + file: + path: "{{ wh_docker_root_dir }}/wordpress/{{ item.wh_docker_name }}/custom_cron" + state: touch + owner: bin + group: wheel + mode: '0644' - name: Restart Docker service: name=docker state=restarted