ansible-lint recommendations

This commit is contained in:
Oli
2023-07-27 23:27:11 +00:00
parent ccca06915f
commit 3e747a1069
31 changed files with 87 additions and 84 deletions

View File

@@ -9,7 +9,7 @@
state: "{{ item.state | default('present') }}"
loop: "{{ php_fpm_ini_options }}"
when: '"fpm" in php_modules'
notify: restart php-fpm
notify: Restart php-fpm
- name: Configure FPM pool
lineinfile:
@@ -18,7 +18,7 @@
line: '{{ item.option }} = {{ item.value }}'
loop: "{{ php_fpm_pool_options }}"
when: '"fpm" in php_modules'
notify: restart php-fpm
notify: Restart php-fpm
- name: Configure FPM environment variables
replace:
@@ -29,7 +29,7 @@
- {regexp: ";env", replace: "env"}
- {regexp: ";clear_env", replace: "clear_env"}
when: '"fpm" in php_modules'
notify: restart php-fpm
notify: Restart php-fpm
- name: Install imagemagick package
apt: