qusal/salt/browser/install-firefox-esr.sls

22 lines
430 B
Plaintext
Raw Normal View History

{#
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:
- .install-common
"{{ slsdotpath }}-installed-firefox-esr":
pkg.installed:
- require:
- sls: {{ slsdotpath }}.install-common
- install_recommends: False
- skip_suggestions: True
- pkgs:
- firefox-esr
{% endif -%}