Typo: should be at least Ubuntu 14 instead of 12

This commit is contained in:
Dick Visser 2017-01-02 09:43:19 +01:00
parent 44b565198d
commit ac1398dfac

View file

@ -29,7 +29,7 @@
dest: "{{ apache_server_root }}/conf-enabled/{{ item }}"
state: link
with_items: "{{ apache_conf_enabled }}"
when: ansible_lsb.major_release|int >= 12
when: ansible_lsb.major_release|int >= 14
notify: restart apache
- name: Disable Apache configuration snippet.
@ -37,7 +37,7 @@
path: "{{ apache_server_root }}/conf-enabled/{{ item }}"
state: absent
with_items: "{{ apache_conf_disabled }}"
when: ansible_lsb.major_release|int >= 12
when: ansible_lsb.major_release|int >= 14
notify: restart apache
- name: Check whether certificates defined in vhosts exist.