aboutsummaryrefslogtreecommitdiffstats
path: root/roles/_workstation/smartcard/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/_workstation/smartcard/tasks/main.yml')
-rw-r--r--roles/_workstation/smartcard/tasks/main.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/roles/_workstation/smartcard/tasks/main.yml b/roles/_workstation/smartcard/tasks/main.yml
new file mode 100644
index 0000000..7e85436
--- /dev/null
+++ b/roles/_workstation/smartcard/tasks/main.yml
@@ -0,0 +1,16 @@
+---
+
+- name: include per-os vars
+ ansible.builtin.include_vars:
+ file: "os_{{ ansible_distribution | lower }}.yml"
+
+- name: install pcsc package
+ ansible.builtin.package:
+ name: "{{ smartcard_packages }}"
+ state: present
+
+- name: start and enable pcscd service
+ ansible.builtin.service:
+ name: pcscd
+ state: started
+ enabled: true
remember that computers suck.