|
- # -*- coding: utf-8 -*-
- # vim: ft=yaml
- ---
-
- {%- set py_ver_repr = salt['pillar.get']('salt:py_ver', '') %}
-
- {%- set salt_repo = salt['pillar.get']('salt:repo', 'https://packages.broadcom.com/artifactory') %}
- {%- set salt_repo_key_url = salt['pillar.get']('salt:repo_key_url', salt_repo ~ '/api/security/keypair/SaltProjectKey/public') %}
-
- Fedora:
- pygit2: python2-pygit2
-
- Amazon:
- pkgrepo_name: saltstack-amzn-repo
- pkgrepo_humanname: SaltStack repo for Amazon Linux 2
- pkgrepo: '{{ salt_repo }}/saltproject-rpm/'
- key_url: '{{ salt_repo_key_url }}'
-
- Ubuntu:
- pkgrepo: 'deb [signed-by=/etc/apt/keyrings/salt-archive-keyring.pgp arch=amd64] {{ salt_repo }}/saltproject-deb stable main'
- pkgrepo_keyring: '{{ salt_repo_key_url }}'
- pkgrepo_keyring_hash: sha256=36decef986477acb8ba2a1fc4041bcf9f22229ef6c939d0317c9e36a9d142b34
- key_url: '{{ salt_repo_key_url }}'
- pygit2: python-pygit2
- gitfs:
- pygit2:
- install_from_source: false
- git:
- require_state: false
- install_from_package: Null
-
- Raspbian:
- pkgrepo: 'deb [signed-by=/etc/apt/keyrings/salt-archive-keyring.pgp arch=armhf] {{ salt_repo }}/saltproject-deb stable main'
- pkgrepo_keyring: '{{ salt_repo_key_url }}'
-
- SmartOS:
- salt_master: salt
- salt_minion: salt
- salt_syndic: salt
- salt_cloud: salt
- salt_api: salt
- salt_ssh: salt
- minion_service: 'salt:minion'
- master_service: 'salt:master'
- api_service: 'salt:api'
- python_dulwich: {{ py_ver_repr or 'py27' }}{{ '-dulwich' }}
- gitfs:
- dulwich:
- install_from_source: false
- config_path: /opt/local/etc/salt
- master:
- gitfs_provider: dulwich
-
- MacOS:
- minion_service: com.saltstack.salt.minion
- master_service: com.saltstack.salt.master
- salt_master_macos_plist_hash: 8435331b2d48ca8f0759f216e5b15ec9171a4216b1441328c732c6906728b7c9
- salt_minion_macos_plist_hash: 26b33da12e0d8960ee96b488c8352002c22a377c19bf3df3f986a1e49eca8b20
-
- FreeBSD:
- salt_master: py39-salt
- salt_minion: py39-salt
- salt_syndic: py39-salt
- salt_cloud: py39-salt
- salt_api: py39-salt
- salt_ssh: py39-salt
- python_git: py39-gitpython
- pygit2: py39-pygit2
- python_dulwich: py39-dulwich
-
- # If `osfingermap.yaml` is introduced in the future, perhaps better to move to there,
- # since this is probably specific to `OpenBSD-6`
- OpenBSD:
- python_git: py3-GitPython
- python_dulwich: py3-dulwich
-
- Windows:
- parallel: false # not supported on windows/cygwin
|