qusal/salt/fetcher/install.sls

35 lines
656 B
Plaintext
Raw Normal View History

2023-12-18 10:31:19 -05:00
{#
2024-01-30 13:28:40 -05:00
SPDX-FileCopyrightText: 2023 - 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
2023-12-18 10:31:19 -05:00
SPDX-License-Identifier: AGPL-3.0-or-later
#}
{% if grains['nodename'] != 'dom0' -%}
include:
- dotfiles.copy-sh
- dotfiles.copy-x11
2024-01-30 13:28:40 -05:00
- dotfiles.copy-net
2023-12-18 10:31:19 -05:00
- sys-pgp.install-client
"{{ 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
- curl
- wget
- git
- rsync
2024-01-30 13:28:40 -05:00
- transmission-cli
- transmission-qt
2023-12-18 10:31:19 -05:00
{% endif -%}