qusal/salt/browser/install-firefox.sls
3np 7246018b9e
fix: reference local sls imports by slsdotpath
Behavior of dot includes changed between salt 3006 and 3007. Work
consistently across Salt versions.
2025-04-14 11:29:33 +02:00

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 -%}