Start migrating jails to fileserver.

This commit is contained in:
Tom Alexander
2022-11-03 00:07:44 -04:00
parent 26c43139a1
commit 1fa60057b2
3 changed files with 19 additions and 2 deletions

View File

@@ -6,6 +6,12 @@
- ccid
# - linux_libusb
- pinentry
state: present
- name: Install packages
when: graphics_driver is defined
package:
name:
- pinentry-qt5
state: present

View File

@@ -4,8 +4,8 @@ use-standard-socket
default-cache-ttl 600
max-cache-ttl 7200
display :0
{% if os_flavor == "linux" %}
{% if graphics_driver is defined and os_flavor == "linux" %}
pinentry-program /usr/bin/pinentry-qt
{% elif os_flavor == "freebsd" %}
{% elif graphics_driver is defined and os_flavor == "freebsd" %}
pinentry-program /usr/local/bin/pinentry-qt5
{% endif %}