diff --git a/playbooks/shell.yml b/playbooks/shell.yml index 981262b..97df9f5 100644 --- a/playbooks/shell.yml +++ b/playbooks/shell.yml @@ -65,7 +65,7 @@ include_role: name: "{{ role }}" with_items: - - cups-client + - cups - firefox - git - google-chrome diff --git a/roles/cups-client/tasks/main.yml b/roles/cups-client/tasks/main.yml deleted file mode 100644 index 749da9d..0000000 --- a/roles/cups-client/tasks/main.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- -- name: install packages - package: - name: cups-client - state: installed - -- name: create config directory - file: - path: /etc/cups - state: directory - mode: 0755 - owner: root - group: "{{ ansible_wheel }}" - -- name: create config - copy: - dest: /etc/cups/client.conf - content: | - ServerName print.{{ mail_domain }}:443 - Encryption Required - TrustOnFirstUse No - ValidateCerts Yes - mode: 0644 - owner: root - group: "{{ ansible_wheel }}"