- name: Ensure php5-fpm package is installed apt: name: php5-fpm state: present when: - ansible_distribution == "Debian" - ansible_distribution_release == "jessie" tags: - php-fpm - name: Ensure php-fpm packages is installed apt: name: php-fpm state: present when: - ansible_distribution == "Debian" - ansible_distribution_major_version | version_compare('9', '>=') tags: - php-fpm