-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Manages Debian 11 * Migrate to new TravisCI version * Fix lint errors * Use FQCN builtins * Drop Ubuntu Xenial support (16.04)
- Loading branch information
Showing
22 changed files
with
281 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
|
||
# TODO: enable later | ||
enable_list: | ||
- fqcn-builtins | ||
|
||
skip_list: | ||
- role-name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
|
||
extends: default | ||
|
||
rules: | ||
line-length: disable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
--- | ||
galaxy_info: | ||
author: Emilien Mantel | ||
description: Install and configure PHP 7.0/7.1/7.2/7.3 | ||
description: Install and configure PHP 7.0/7.1/7.2/7.3/7.4/8.0 | ||
company: | ||
license: GPLv2 | ||
min_ansible_version: 2.6 | ||
min_ansible_version: 2.11 | ||
platforms: | ||
- name: Debian | ||
versions: | ||
- stretch | ||
- buster | ||
- name: Ubuntu | ||
versions: | ||
- xenial | ||
- bionic | ||
- name: FreeBSD | ||
versions: | ||
- 11.0 | ||
- 11.1 | ||
- 12.0 | ||
- name: Debian | ||
versions: | ||
- stretch | ||
- buster | ||
- bullseye | ||
- name: Ubuntu | ||
versions: | ||
- bionic | ||
- name: FreeBSD | ||
versions: | ||
- 11.0 | ||
- 11.1 | ||
- 12.0 | ||
galaxy_tags: | ||
- development | ||
- web | ||
- php | ||
- php-fpm | ||
- php7 | ||
- debian | ||
- ubuntu | ||
- freebsd | ||
- development | ||
- web | ||
- php | ||
- fpm | ||
- php7 | ||
- php8 | ||
- debian | ||
- ubuntu | ||
- freebsd | ||
dependencies: [] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.