Saltstack Official Salt Formula
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # -*- coding: utf-8 -*-
- # vim: ft=sls
- {% from "salt/map.jinja" import salt_settings with context %}
-
- {#- Resorting to this ugly hack since the state doesn't handle if the `baseurl` is
- already configured under another name, such as used by the `salt-bootstrap` #}
- {%- if not salt["cmd.shell"]("zypper lr --uri | grep " ~ salt_settings.pkgrepo) %}
- salt-pkgrepo-install-saltstack-suse:
- pkgrepo.managed:
- - name: systemsmanagement_saltstack_products
- - humanname: {{ salt_settings.pkgrepo_humanname }}
- - baseurl: {{ salt_settings.pkgrepo }}
- - enabled: 1
- - gpgcheck: 1
- - gpgkey: {{ salt_settings.key_url }}
- - gpgautoimport: true
- {%- endif %}
|