aboutsummaryrefslogtreecommitdiffstats
path: root/roles/cups_client/tasks/main.yml
blob: f0521c12ef14816dca87f93444b5d28609f62fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- name: install cups
  dnf:
    name: '@print-client'
    state: present

- name: generate cups client configuration
  template:
    src: etc/cups/client.conf.j2
    dest: /etc/cups/client.conf
    owner: root
    group: lp
    mode: 0644
  notify: restart cups

- name: enable cups
  systemd:
    name: cups
    enabled: yes
    state: started