Switch to an explicit install_graphics variable rather than using graphics_driver to control all graphics install.

This commit is contained in:
Tom Alexander
2022-11-25 15:29:29 -05:00
parent 11ef6647f1
commit 2222c9d033
9 changed files with 10 additions and 8 deletions

View File

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