-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: wrong template name for sys-gui associates
For: #89
- Loading branch information
1 parent
b182a44
commit 31a606e
Showing
4 changed files
with
14 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
SPDX-FileCopyrightText: 2020 Artur Puzio <[email protected]> | ||
SPDX-FileCopyrightText: 2020 Frederic Pierret <frederic.pierret@qubes-os.org> | ||
SPDX-FileCopyrightText: 2020 - 2024 Marmarek Marczykowski-Gorecki <[email protected]> | ||
SPDX-FileCopyrightText: 2024 Benjamin Grande M. S. <[email protected]> | ||
SPDX-FileCopyrightText: 2024 - 2025 Benjamin Grande M. S. <[email protected]> | ||
|
||
SPDX-License-Identifier: GPL-2.0-only | ||
#} | ||
|
@@ -25,25 +25,15 @@ include: | |
{% endif %} | ||
{% load_yaml as defaults -%} | ||
name: tpl-{{ slsdotpath }} | ||
name: {{ slsdotpath }} | ||
force: True | ||
require: | ||
- sls: {{ slsdotpath }}.clone | ||
prefs: | ||
- audiovm: "" | ||
{%- endload %} | ||
{{ load(defaults) }} | ||
{% load_yaml as defaults -%} | ||
name: {{ slsdotpath }}-gpu | ||
force: True | ||
require: | ||
- sls: {{ slsdotpath }}.clone | ||
- qvm: tpl-sys-gui | ||
present: | ||
- template: tpl-{{ slsdotpath }} | ||
- template: tpl-sys-gui | ||
- label: black | ||
prefs: | ||
- template: tpl-{{ slsdotpath }} | ||
- template: tpl-sys-gui | ||
- label: black | ||
- memory: 600 | ||
- maxmem: 4000 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{# | ||
SPDX-FileCopyrightText: 2021 Frederic Pierret <frederic.pierret@qubes-os.org> | ||
SPDX-FileCopyrightText: 2021 - 2024 Marmarek Marczykowski-Gorecki <[email protected]> | ||
SPDX-FileCopyrightText: 2024 Benjamin Grande M. S. <[email protected]> | ||
SPDX-FileCopyrightText: 2024 - 2025 Benjamin Grande M. S. <[email protected]> | ||
|
||
SPDX-License-Identifier: GPL-2.0-only | ||
#} | ||
|
@@ -28,25 +28,15 @@ include: | |
{% endif %} | ||
{% load_yaml as defaults -%} | ||
name: tpl-{{ slsdotpath }} | ||
name: {{ slsdotpath }} | ||
force: True | ||
require: | ||
- sls: {{ slsdotpath }}.clone | ||
prefs: | ||
- audiovm: "" | ||
{%- endload %} | ||
{{ load(defaults) }} | ||
{% load_yaml as defaults -%} | ||
name: {{ slsdotpath }}-vnc | ||
force: True | ||
require: | ||
- sls: {{ slsdotpath }}.clone | ||
- qvm: tpl-sys-gui | ||
present: | ||
- template: tpl-{{ slsdotpath }} | ||
- template: tpl-sys-gui | ||
- label: black | ||
prefs: | ||
- template: tpl-{{ slsdotpath }} | ||
- template: tpl-sys-gui | ||
- label: black | ||
- memory: 400 | ||
- maxmem: 4000 | ||
|