From d9b2f1f9121f891581767b990b5bd4873866b4a8 Mon Sep 17 00:00:00 2001 From: Timo Makinen Date: Wed, 1 Sep 2021 14:39:29 +0000 Subject: [PATCH] cups-client: Move to software submodule --- playbooks/shell.yml | 2 +- roles/cups-client/tasks/main.yml | 25 ------------------------- 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 roles/cups-client/tasks/main.yml 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 }}"