Install and enable CUPS

This commit is contained in:
Anthony Rose 2020-04-19 16:05:25 +01:00
parent 29d1c8ace3
commit 744db211ed
3 changed files with 9 additions and 0 deletions

View file

@ -6,3 +6,4 @@
- include: ssh.yml - include: ssh.yml
- include: solokeys.yml - include: solokeys.yml
- include: locale.yml - include: locale.yml
- include: printing.yml

View file

@ -19,6 +19,7 @@
- bc - bc
- bind-tools - bind-tools
- clang - clang
- cups
- git - git
- gnupg - gnupg
- lldb - lldb

View file

@ -0,0 +1,7 @@
---
- name: Enable CUPS
become: true
systemd:
name: org.cups.cupsd.service
enabled: yes
state: started