mirror of
https://github.com/ben-grande/qusal.git
synced 2024-10-01 02:35:49 -04:00
b52e4b1b63
Split-gpg V1 allowed for querying public keys, but as split-gpg2 is running as an agent, public keys are not queried. Allowing connection to the server to query only public parts of the key exposes the server more than needed to the client. All clients now have to hold the public key they need locally in order to do GPG operations.
49 lines
982 B
Plaintext
49 lines
982 B
Plaintext
{#
|
|
SPDX-FileCopyrightText: 2023 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#}
|
|
|
|
{%- from "qvm/template.jinja" import load -%}
|
|
|
|
include:
|
|
- .clone
|
|
|
|
{% load_yaml as defaults -%}
|
|
name: tpl-{{ slsdotpath }}
|
|
force: True
|
|
require:
|
|
- sls: {{ slsdotpath }}.clone
|
|
features:
|
|
- set:
|
|
- menu-items: "mutt.desktop qubes-run-terminal.desktop qubes-start.desktop"
|
|
- default-menu-items: "mutt.desktop qubes-run-terminal.desktop qubes-start.desktop"
|
|
{%- endload %}
|
|
{{ load(defaults) }}
|
|
|
|
{% load_yaml as defaults -%}
|
|
name: {{ slsdotpath }}
|
|
force: True
|
|
require:
|
|
- sls: {{ slsdotpath }}.clone
|
|
present:
|
|
- template: tpl-{{ slsdotpath }}
|
|
- label: yellow
|
|
prefs:
|
|
- template: tpl-{{ slsdotpath }}
|
|
- label: yellow
|
|
- vcpus: 1
|
|
- memory: 200
|
|
- maxmem: 350
|
|
- autostart: False
|
|
features:
|
|
- enable:
|
|
- service.split-gpg2-client
|
|
- service.shutdown-idle
|
|
- disable:
|
|
- service.cups
|
|
- service.cups-browsed
|
|
- service.tinyproxy
|
|
{%- endload %}
|
|
{{ load(defaults) }}
|