New release (#14)

* Manages Debian 11
* Migrate to new TravisCI version
* Fix lint errors
* Use FQCN builtins
* Drop Ubuntu Xenial support (16.04)
This commit is contained in:
Emilien M
2021-09-01 09:57:23 +02:00
committed by GitHub
parent 3209f6b010
commit 309824dabf
22 changed files with 276 additions and 194 deletions

View File

@@ -1,14 +1,14 @@
---
- name: restart php-fpm
service:
ansible.builtin.service:
name: '{{ php_fpm_service }}'
state: restarted
when: php_install_fpm
notify: docker restart php-fpm
- name: docker restart php-fpm
command: 'service {{ php_fpm_service }} restart'
ansible.builtin.command: 'service {{ php_fpm_service }} restart'
args:
warn: false
when: ansible_virtualization_type == 'docker'