qusal/salt/sys-wireguard/install.sls

36 lines
682 B
Plaintext
Raw Normal View History

2023-11-13 09:33:28 -05:00
{#
2023-11-13 13:18:06 -05:00
SPDX-FileCopyrightText: 2022 unman <unman@thirdeyesecurity.org>
2023-11-13 09:33:28 -05:00
SPDX-FileCopyrightText: 2023 Benjamin Grande M. S. <ben.grande.b@gmail.com>
SPDX-License-Identifier: AGPL-3.0-or-later
#}
{% if grains['nodename'] != 'dom0' -%}
{#
2023-11-13 09:33:28 -05:00
"{{ slsdotpath }}-qvpn-group":
group.present:
- name: qvpn
- system: True
#}
2023-11-13 09:33:28 -05:00
"{{ slsdotpath }}-updated":
pkg.uptodate:
- refresh: True
"{{ slsdotpath }}-installed":
pkg.installed:
- refresh: True
- install_recommends: False
- skip_suggestions: True
- pkgs:
- qubes-core-agent-networking
- ca-certificates
- iproute2
- resolvconf
- wireguard
- unzip
2023-11-13 09:33:28 -05:00
- curl
{% endif -%}