Modernize

* Fix lint errors due to ansible-lint latest version
* Drop debian stretch support
This commit is contained in:
Emilien M
2022-10-06 14:47:06 +02:00
committed by GitHub
parent 4aef107c1a
commit e9e74e2db6
12 changed files with 62 additions and 58 deletions

View File

@@ -1,13 +1,13 @@
---
- name: restart php-fpm
- name: Restart php-fpm
ansible.builtin.service:
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
- name: Docker restart php-fpm
ansible.builtin.command: 'service {{ php_fpm_service }} restart'
args:
warn: false