mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-02 08:10:18 +01:00
Fix linting issues.
This commit is contained in:
parent
e0d9092779
commit
04600b45f6
5 changed files with 7 additions and 0 deletions
|
@ -8,3 +8,4 @@ rules:
|
||||||
|
|
||||||
ignore: |
|
ignore: |
|
||||||
.github/stale.yml
|
.github/stale.yml
|
||||||
|
.travis.yml
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
regexp: "{{ item.regexp }}"
|
regexp: "{{ item.regexp }}"
|
||||||
line: "{{ item.line }}"
|
line: "{{ item.line }}"
|
||||||
state: present
|
state: present
|
||||||
|
mode: 0644
|
||||||
with_items: "{{ apache_ports_configuration_items }}"
|
with_items: "{{ apache_ports_configuration_items }}"
|
||||||
notify: restart apache
|
notify: restart apache
|
||||||
|
|
||||||
|
@ -13,6 +14,7 @@
|
||||||
src: "{{ apache_server_root }}/mods-available/{{ item }}"
|
src: "{{ apache_server_root }}/mods-available/{{ item }}"
|
||||||
dest: "{{ apache_server_root }}/mods-enabled/{{ item }}"
|
dest: "{{ apache_server_root }}/mods-enabled/{{ item }}"
|
||||||
state: link
|
state: link
|
||||||
|
mode: 0644
|
||||||
with_items: "{{ apache_mods_enabled }}"
|
with_items: "{{ apache_mods_enabled }}"
|
||||||
notify: restart apache
|
notify: restart apache
|
||||||
|
|
||||||
|
@ -43,6 +45,7 @@
|
||||||
src: "{{ apache_conf_path }}/sites-available/{{ apache_vhosts_filename }}"
|
src: "{{ apache_conf_path }}/sites-available/{{ apache_vhosts_filename }}"
|
||||||
dest: "{{ apache_conf_path }}/sites-enabled/{{ apache_vhosts_filename }}"
|
dest: "{{ apache_conf_path }}/sites-enabled/{{ apache_vhosts_filename }}"
|
||||||
state: link
|
state: link
|
||||||
|
mode: 0644
|
||||||
notify: restart apache
|
notify: restart apache
|
||||||
when: apache_create_vhosts | bool
|
when: apache_create_vhosts | bool
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
regexp: "{{ item.regexp }}"
|
regexp: "{{ item.regexp }}"
|
||||||
line: "{{ item.line }}"
|
line: "{{ item.line }}"
|
||||||
state: present
|
state: present
|
||||||
|
mode: 0644
|
||||||
with_items: "{{ apache_ports_configuration_items }}"
|
with_items: "{{ apache_ports_configuration_items }}"
|
||||||
notify: restart apache
|
notify: restart apache
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
regexp: "{{ item.regexp }}"
|
regexp: "{{ item.regexp }}"
|
||||||
line: "{{ item.line }}"
|
line: "{{ item.line }}"
|
||||||
state: present
|
state: present
|
||||||
|
mode: 0644
|
||||||
with_items: "{{ apache_ports_configuration_items }}"
|
with_items: "{{ apache_ports_configuration_items }}"
|
||||||
notify: restart apache
|
notify: restart apache
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
regexp: "{{ item.regexp }}"
|
regexp: "{{ item.regexp }}"
|
||||||
line: "{{ item.line }}"
|
line: "{{ item.line }}"
|
||||||
state: present
|
state: present
|
||||||
|
mode: 0644
|
||||||
with_items: "{{ apache_ports_configuration_items }}"
|
with_items: "{{ apache_ports_configuration_items }}"
|
||||||
notify: restart apache
|
notify: restart apache
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue