Start migrating jails to fileserver.

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

View File

@ -16,3 +16,14 @@ hwpstate: false
build_user:
name: talexander
group: talexander
jail_zfs_dataset: zmass/encrypted/jails
jail_zfs_dataset_mountpoint: /jail/main
jail_list:
- name: cloak
conf:
src: cloak
- name: dagger
conf:
src: dagger
bhyve_dataset: zmass/encrypted/vm
bhyve_list: []

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 %}