ee06702fca
repo.saltstack.com handles all currently supported Debian releases as well as all supported Ubuntu releases so this change should be fine. Part of #180.
97 lines
2.9 KiB
Django/Jinja
97 lines
2.9 KiB
Django/Jinja
# -*- coding: utf-8 -*-
|
|
# vim: ft=jinja
|
|
|
|
{## Start with defaults from defaults.yaml ##}
|
|
{% import_yaml "salt/defaults.yaml" as default_settings %}
|
|
|
|
{##
|
|
Setup variable using grains['os_family'] based logic, only add key:values here
|
|
that differ from whats in defaults.yaml
|
|
##}
|
|
{% set osrelease = salt['grains.get']('osrelease') %}
|
|
{% set os_family_map = salt['grains.filter_by']({
|
|
'Debian': {
|
|
'pkgrepo': 'deb http://repo.saltstack.com/apt/' +
|
|
salt['grains.get']('os')|lower + '/' + salt['grains.get']('osmajorrelease', osrelease) + '/amd64/latest ' + salt['grains.get']('oscodename') + ' main',
|
|
'key_url': 'https://repo.saltstack.com/apt/' + salt['grains.get']('os')|lower + '/' + salt['grains.get']('osmajorrelease', osrelease) + '/amd64/latest/SALTSTACK-GPG-KEY.pub',
|
|
'libgit2': 'libgit2-22',
|
|
'gitfs': {
|
|
'pygit2': {
|
|
'install_from_source': True,
|
|
'version': '0.22.1',
|
|
'git': {
|
|
'require_state': False,
|
|
'install_from_package': 'git',
|
|
},
|
|
'libgit2': {
|
|
'install_from_source': False,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
'RedHat': {
|
|
'pygit2': 'python-pygit2',
|
|
'python_git': 'GitPython',
|
|
'gitfs': {
|
|
'pygit2': {
|
|
'install_from_source': False,
|
|
'git': {
|
|
'require_state': False,
|
|
'install_from_package': 'git',
|
|
},
|
|
},
|
|
},
|
|
'master': {
|
|
'gitfs_provider': 'pygit2'
|
|
},
|
|
'repotype': 'epel',
|
|
},
|
|
'Suse': {},
|
|
'Gentoo': {
|
|
'salt_master': 'app-admin/salt',
|
|
'salt_minion': 'app-admin/salt',
|
|
'salt_syndic': 'app-admin/salt',
|
|
'salt_api': 'app-admin/salt',
|
|
'salt_cloud': 'app-admin/salt',
|
|
},
|
|
'Arch': {
|
|
'salt_master': 'salt-zmq',
|
|
'salt_minion': 'salt-zmq',
|
|
'salt_syndic': 'salt-zmq',
|
|
'salt_cloud': 'salt-zmq',
|
|
'salt_api': 'salt-zmq',
|
|
'salt_ssh': 'salt-zmq',
|
|
},
|
|
'FreeBSD': {
|
|
'salt_master': 'py27-salt',
|
|
'salt_minion': 'py27-salt',
|
|
'salt_syndic': 'py27-salt',
|
|
'salt_cloud': 'py27-salt',
|
|
'salt_api': 'py27-salt',
|
|
'salt_ssh': 'py27-salt',
|
|
'python_git': 'py27-GitPython',
|
|
'pygit2': 'py27-pygit2',
|
|
'config_path': '/usr/local/etc/salt',
|
|
'minion_service': 'salt_minion',
|
|
'master_service': 'salt_master',
|
|
'api_service': 'salt_api',
|
|
'syndic_service': 'salt_syndic',
|
|
},
|
|
'Windows': {
|
|
'salt_minion': 'saltstack.minion',
|
|
'config_path': 'C:\salt\conf',
|
|
'minion_service': 'salt-minion',
|
|
},
|
|
}, grain="os_family", merge=salt['pillar.get']('salt:lookup'))
|
|
%}
|
|
|
|
{## Merge the flavor_map to the default settings ##}
|
|
{% do default_settings.salt.update(os_family_map) %}
|
|
|
|
{## Merge in salt:lookup pillar ##}
|
|
{% set salt_settings = salt['pillar.get'](
|
|
'salt',
|
|
default=default_settings.salt,
|
|
merge=True)
|
|
%}
|