Remove references to Debian 8

I don't need or want to support Debian 8 anymore so I can remove all
references to it in comments and code.
This commit is contained in:
2017-11-05 00:54:53 +02:00
parent b87f2e2fb0
commit b0524d2a2e
5 changed files with 2 additions and 42 deletions

View File

@ -2,11 +2,6 @@
# Note: Debian 9's php-fpm config is identical to Ubuntu 16.04's, so for now we
# can capitalize on that and use the same tasks.
- name: Configure php-fpm on old Debian
import_tasks: Debian.yml
when: ansible_distribution == 'Debian' and ansible_distribution_major_version | version_compare('9', '<')
tags: php-fpm
- name: Configure php-fpm on Ubuntu and Debian 9
import_tasks: Ubuntu.yml
when: ansible_distribution == 'Ubuntu' or (ansible_distribution == 'Debian' and ansible_distribution_major_version | version_compare('9', '=='))