--- # --- # Cups Server # --- - name: (cups-install.yml) Ensure CUPS packages server (buster) are installed. package: pkg: '{{ apt_install_server_cups_buster }}' state: present when: - ansible_facts['distribution'] == "Debian" - ansible_facts['distribution_major_version'] == "10" tags: - cups-server # --- # Cups clients # --- - name: (cups.yml) Ensure CUPS packages clients are installed. package: pkg: "{{ apt_install_client_cups }}" state: present when: - ansible_distribution_version == "18.04" - ansible_architecture == "x86_64" tags: - cups-client