mirror of
https://github.com/ben-grande/qusal.git
synced 2024-10-01 02:35:49 -04:00
70 lines
1.5 KiB
Plaintext
70 lines
1.5 KiB
Plaintext
{#
|
|
SPDX-FileCopyrightText: 2023 - 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#}
|
|
|
|
{%- from "qvm/template.jinja" import load -%}
|
|
|
|
include:
|
|
- fedora.create
|
|
- .clone
|
|
- fedora-minimal.prefs
|
|
|
|
{% load_yaml as defaults -%}
|
|
name: tpl-{{ slsdotpath }}
|
|
force: True
|
|
require:
|
|
- sls: {{ slsdotpath }}.clone
|
|
- sls: fedora-minimal.prefs
|
|
prefs:
|
|
- audiovm: ""
|
|
{%- endload %}
|
|
{{ load(defaults) }}
|
|
|
|
{% load_yaml as defaults -%}
|
|
name: dvm-{{ slsdotpath }}
|
|
force: True
|
|
require:
|
|
- sls: {{ slsdotpath }}.clone
|
|
present:
|
|
- template: tpl-{{ slsdotpath }}
|
|
- label: black
|
|
prefs:
|
|
- template: tpl-{{ slsdotpath }}
|
|
- label: black
|
|
- netvm: ""
|
|
- audiovm: ""
|
|
- dispvm-allowed: True
|
|
- vcpus: 1
|
|
- memory: 300
|
|
- maxmem: 600
|
|
- autostart: False
|
|
- template_for_dispvms: True
|
|
- include_in_backups: False
|
|
features:
|
|
- enable:
|
|
- appmenus-dispvm
|
|
- internal
|
|
{%- endload %}
|
|
{{ load(defaults) }}
|
|
|
|
"{{ slsdotpath }}-set-management_dispvm-to-dvm-fedora":
|
|
qvm.vm:
|
|
- require:
|
|
- qvm: dvm-fedora
|
|
- name: tpl-{{ slsdotpath }}
|
|
- prefs:
|
|
- management_dispvm: dvm-fedora
|
|
|
|
## TODO: Remove when template with patch reaches upstream or updates enforce
|
|
## salt-deps to be installed.
|
|
## https://github.com/QubesOS/qubes-issues/issues/8806
|
|
"{{ slsdotpath }}-install-salt-deps":
|
|
cmd.script:
|
|
- require:
|
|
- qvm: "{{ slsdotpath }}-set-management_dispvm-to-dvm-fedora"
|
|
- name: salt-patch.sh
|
|
- source: salt://fedora-minimal/files/admin/bin/salt-patch.sh
|
|
- args: tpl-{{ slsdotpath }}
|