feat(packages): Add gnupg and smartcard play

This commit is contained in:
Marty Oehme 2025-02-23 15:41:56 +01:00 committed by Marty Oehme
parent 8b778c1b33
commit 6fe7956f43

View file

@ -60,6 +60,24 @@
with_items: [bluetoothd, dbus]
listen: installed-bluetooth
- name: Install gnupg
hosts: target_system
become: true
tags:
- packages
- gpg
tasks:
- name: Install a bunch of base custom stuff
community.general.xbps:
name: [gnupg, gnupg2-scdaemon]
state: "{{ desired_package_state }}"
handlers:
- name: Put user in plugdev group
ansible.builtin.user:
name: "{{ user_name }}"
groups: [plugdev]
append: true
- name: Install basic custom void packages
hosts: target_system
become: true