💚 Fix linters errors
parent
b363238e10
commit
726d769d26
|
@ -41,21 +41,6 @@
|
||||||
ansible.builtin.service:
|
ansible.builtin.service:
|
||||||
name: nginx
|
name: nginx
|
||||||
state: started
|
state: started
|
||||||
when: ansible_virtualization_type != 'docker'
|
|
||||||
|
|
||||||
- name: Start nginx if testing with Docker
|
|
||||||
when: ansible_virtualization_type == 'docker'
|
|
||||||
block:
|
|
||||||
|
|
||||||
- name: COMMAND | Docker nginx status
|
|
||||||
ansible.builtin.command: service nginx status
|
|
||||||
changed_when: false
|
|
||||||
failed_when: false
|
|
||||||
register: ngs
|
|
||||||
|
|
||||||
- name: COMMAND | Docker start nginx
|
|
||||||
ansible.builtin.command: service nginx start
|
|
||||||
when: ngs.stdout.find('nginx is not running') != -1
|
|
||||||
|
|
||||||
- name: FILE | Create /var/www
|
- name: FILE | Create /var/www
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
|
@ -79,4 +64,4 @@
|
||||||
content: '<?php echo ini_get("memory_limit") . "\n";'
|
content: '<?php echo ini_get("memory_limit") . "\n";'
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: 0644
|
mode: 0644
|
||||||
|
|
|
@ -33,4 +33,4 @@ php_fpm_poold:
|
||||||
php_value:
|
php_value:
|
||||||
display_errors: 'Off'
|
display_errors: 'Off'
|
||||||
php_admin_value:
|
php_admin_value:
|
||||||
memory_limit: '98M'
|
memory_limit: '98M'
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
register: c
|
register: c
|
||||||
failed_when: c.stdout == ''
|
failed_when: c.stdout == ''
|
||||||
|
|
||||||
- name: SHELL | Check custom php value
|
- name: SHELL | Check custom php value # noqa: command-instead-of-module
|
||||||
ansible.builtin.shell: "curl -H 'Host: {{ vhost }}' http://127.0.0.1/ini.php 2> /dev/null"
|
ansible.builtin.shell: "curl -H 'Host: {{ vhost }}' http://127.0.0.1/ini.php 2> /dev/null"
|
||||||
changed_when: false
|
changed_when: false
|
||||||
register: c
|
register: c
|
||||||
|
|
|
@ -29,4 +29,4 @@ provisioner:
|
||||||
__nginx_conf: /etc/nginx/nginx.conf
|
__nginx_conf: /etc/nginx/nginx.conf
|
||||||
host_vars:
|
host_vars:
|
||||||
debian-10-php-7.4:
|
debian-10-php-7.4:
|
||||||
php_version: '7.4'
|
php_version: '7.4'
|
||||||
|
|
|
@ -78,13 +78,13 @@
|
||||||
when: ansible_virtualization_type == 'docker'
|
when: ansible_virtualization_type == 'docker'
|
||||||
block:
|
block:
|
||||||
|
|
||||||
- name: COMMAND | Docker nginx status
|
- name: COMMAND | Docker nginx status # noqa: command-instead-of-module
|
||||||
ansible.builtin.command: service nginx status
|
ansible.builtin.command: service nginx status
|
||||||
changed_when: false
|
changed_when: false
|
||||||
failed_when: false
|
failed_when: false
|
||||||
register: ngs
|
register: ngs
|
||||||
|
|
||||||
- name: COMMAND | Docker start nginx
|
- name: COMMAND | Docker start nginx # noqa: command-instead-of-module no-changed-when
|
||||||
ansible.builtin.command: service nginx start
|
ansible.builtin.command: service nginx start
|
||||||
when: ngs.stdout.find('nginx is not running') != -1
|
when: ngs.stdout.find('nginx is not running') != -1
|
||||||
|
|
||||||
|
@ -96,7 +96,7 @@
|
||||||
state: reloaded
|
state: reloaded
|
||||||
notify: Docker reload nginx
|
notify: Docker reload nginx
|
||||||
|
|
||||||
- name: Docker reload nginx
|
- name: Docker reload nginx # noqa: command-instead-of-module no-changed-when
|
||||||
ansible.builtin.command: service nginx reload
|
ansible.builtin.command: service nginx reload
|
||||||
notify: Docker reload nginx
|
notify: Docker reload nginx
|
||||||
when: ansible_virtualization_type == 'docker'
|
when: ansible_virtualization_type == 'docker'
|
||||||
|
@ -146,7 +146,7 @@
|
||||||
register: c
|
register: c
|
||||||
failed_when: c.stdout == ''
|
failed_when: c.stdout == ''
|
||||||
|
|
||||||
- name: SHELL | Check custom php value
|
- name: SHELL | Check custom php value # noqa: command-instead-of-module
|
||||||
ansible.builtin.shell: "curl -H 'Host: {{ vhost }}' http://127.0.0.1/ini.php 2> /dev/null"
|
ansible.builtin.shell: "curl -H 'Host: {{ vhost }}' http://127.0.0.1/ini.php 2> /dev/null"
|
||||||
changed_when: false
|
changed_when: false
|
||||||
register: c
|
register: c
|
||||||
|
|
Loading…
Reference in New Issue