--- # 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. Ubuntu 18.04 uses php-fpm 7.2. - name: Configure php-fpm on Ubuntu 16.04 and Debian 9 include_tasks: Ubuntu.yml when: (ansible_distribution == 'Ubuntu' and ansible_distribution_version is version_compare('16.04', '==')) or (ansible_distribution == 'Debian' and ansible_distribution_major_version is version_compare('9', '==')) tags: php-fpm - name: Configure php-fpm on Ubuntu 18.04 include_tasks: Ubuntu_18.04.yml when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version_compare('18.04', '==') tags: php-fpm # vim: set ts=2 sw=2: