-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- autostart set to false; - lower vcpus available; - lower total memory; and - use state provided by upstream;
- Loading branch information
1 parent
624be83
commit f6cb322
Showing
1 changed file
with
24 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,29 @@ SPDX-FileCopyrightText: 2023 Benjamin Grande M. S. <[email protected]> | |
SPDX-License-Identifier: AGPL-3.0-or-later | ||
#} | ||
|
||
{%- from "qvm/template.jinja" import load -%} | ||
{%- import slsdotpath ~ "/template.jinja" as template -%} | ||
include: | ||
- whonix.clone | ||
- .clone | ||
- qvm.anon-whonix | ||
- qvm.whonix-workstation-dvm | ||
{% load_yaml as defaults -%} | ||
name: sys-{{ slsdotpath }} | ||
force: True | ||
require: | ||
- sls: {{ slsdotpath }}.clone | ||
present: | ||
- template: {{ template.whonix_gateway_template }} | ||
- label: black | ||
prefs: | ||
- template: {{ template.whonix_gateway_template }} | ||
- label: black | ||
- memory: 300 | ||
- maxmem: 500 | ||
- vcpus: 1 | ||
- include_in_backups: False | ||
- autostart: False | ||
{%- endload %} | ||
{{ load(defaults) }} |