- hosts: desktop tasks:
- name: install desktop software
dnf: name: "{{ item }}" state: installed become: yes when: ansible_distribution == 'Fedora' with_items: - "{{ desktop_software }}"