feat(packages): Add gnupg and smartcard play
This commit is contained in:
parent
8b778c1b33
commit
6fe7956f43
1 changed files with 18 additions and 0 deletions
|
@ -60,6 +60,24 @@
|
||||||
with_items: [bluetoothd, dbus]
|
with_items: [bluetoothd, dbus]
|
||||||
listen: installed-bluetooth
|
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
|
- name: Install basic custom void packages
|
||||||
hosts: target_system
|
hosts: target_system
|
||||||
become: true
|
become: true
|
||||||
|
|
Loading…
Reference in a new issue