mirror of
https://github.com/ben-grande/qusal.git
synced 2025-04-25 17:49:22 -04:00

Behavior of dot includes changed between salt 3006 and 3007. Work consistently across Salt versions.
25 lines
571 B
Plaintext
25 lines
571 B
Plaintext
{#
|
|
SPDX-FileCopyrightText: 2023 - 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#}
|
|
|
|
{% if grains['nodename'] != 'dom0' -%}
|
|
|
|
include:
|
|
- {{ slsdotpath }}.install-firefox-repo
|
|
- {{ slsdotpath }}.install-common
|
|
|
|
"{{ slsdotpath }}-installed-firefox":
|
|
pkg.installed:
|
|
- require:
|
|
- sls: {{ slsdotpath }}.install-common
|
|
- sls: {{ slsdotpath }}.install-firefox-repo
|
|
- install_recommends: False
|
|
- skip_suggestions: True
|
|
- setopt: "install_weak_deps=False"
|
|
- pkgs:
|
|
- firefox
|
|
|
|
{% endif -%}
|