mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-07 02:20:18 +01:00
Typo: should be at least Ubuntu 14 instead of 12
This commit is contained in:
parent
44b565198d
commit
ac1398dfac
1 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@
|
||||||
dest: "{{ apache_server_root }}/conf-enabled/{{ item }}"
|
dest: "{{ apache_server_root }}/conf-enabled/{{ item }}"
|
||||||
state: link
|
state: link
|
||||||
with_items: "{{ apache_conf_enabled }}"
|
with_items: "{{ apache_conf_enabled }}"
|
||||||
when: ansible_lsb.major_release|int >= 12
|
when: ansible_lsb.major_release|int >= 14
|
||||||
notify: restart apache
|
notify: restart apache
|
||||||
|
|
||||||
- name: Disable Apache configuration snippet.
|
- name: Disable Apache configuration snippet.
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
path: "{{ apache_server_root }}/conf-enabled/{{ item }}"
|
path: "{{ apache_server_root }}/conf-enabled/{{ item }}"
|
||||||
state: absent
|
state: absent
|
||||||
with_items: "{{ apache_conf_disabled }}"
|
with_items: "{{ apache_conf_disabled }}"
|
||||||
when: ansible_lsb.major_release|int >= 12
|
when: ansible_lsb.major_release|int >= 14
|
||||||
notify: restart apache
|
notify: restart apache
|
||||||
|
|
||||||
- name: Check whether certificates defined in vhosts exist.
|
- name: Check whether certificates defined in vhosts exist.
|
||||||
|
|
Loading…
Reference in a new issue