sane: Intial version of role
This commit is contained in:
parent
8e9a7fd4fc
commit
f0656502af
1 changed files with 14 additions and 0 deletions
14
roles/sane/tasks/main.yml
Normal file
14
roles/sane/tasks/main.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
- name: Install packagers
|
||||
ansible.builtin.package:
|
||||
name: "{{ item }}"
|
||||
state: installed
|
||||
with_items:
|
||||
- sane-backends
|
||||
- sane-backends-daemon
|
||||
|
||||
- name: Enable service
|
||||
ansible.builtin.systemd:
|
||||
name: saned.socket
|
||||
state: started
|
||||
enabled: true
|
Loading…
Add table
Reference in a new issue