diff --git a/handlers/main.yml b/handlers/main.yml index 011d859..87cb18f 100644 --- a/handlers/main.yml +++ b/handlers/main.yml @@ -5,7 +5,7 @@ name: '{{ php_fpm_service }}' state: restarted when: php_install_fpm - notify: docker restart php-fpm + notify: Docker restart php-fpm - name: Docker restart php-fpm ansible.builtin.command: 'service {{ php_fpm_service }} restart' diff --git a/tests/test.yml b/tests/test.yml index dc1e42c..8918a1c 100644 --- a/tests/test.yml +++ b/tests/test.yml @@ -51,20 +51,20 @@ mode: 0644 owner: root group: root - notify: reload nginx + notify: Reload nginx - name: COMMAND | Fix nginx config ansible.builtin.command: "cp {{ __nginx_conf | dirname }}/fastcgi_params {{ __nginx_conf | dirname }}/fastcgi.conf" args: creates: "{{ __nginx_conf | dirname }}/fastcgi.conf" - notify: reload nginx + notify: Reload nginx - name: LINEINFILE | Fix nginx config (second step) ansible.builtin.lineinfile: regexp: '^fastcgi_param\s+SCRIPT_FILENAME' line: "fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;" dest: "{{ __nginx_conf | dirname }}/fastcgi.conf" - notify: reload nginx + notify: Reload nginx - name: SERVICE | Ensure nginx is started ansible.builtin.service: