Saltstack Official Salt Formula
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

199 lines
6.7KB

  1. # -*- coding: utf-8 -*-
  2. # vim: ft=jinja
  3. {%- macro deep_merge(a, b) %}
  4. {#- This whole `'dict' in x.__class__.__name__` mess is a
  5. workaround for the missing mapping test in CentOS 6's
  6. ancient Jinja2, see #193 #}
  7. {%- for k,v in b.iteritems() %}
  8. {%- if v is string or v is number %}
  9. {%- do a.update({ k: v }) %}
  10. {%- elif 'dict' not in v.__class__.__name__ %}
  11. {%- if a[k] is not defined %}
  12. {%- do a.update({ k: v }) %}
  13. {%- elif a[k] is iterable and 'dict' not in a[k].__class__.__name__ and
  14. a[k] is not string %}
  15. {%- do a.update({ k: v|list + a[k]|list}) %}
  16. {%- else %}
  17. {%- do a.update({ k: v }) %}
  18. {%- endif %}
  19. {%- elif 'dict' in v.__class__.__name__ %}
  20. {%- if a[k] is not defined %}
  21. {%- do a.update({ k: v }) %}
  22. {%- elif 'dict' in a[k].__class__.__name__ %}
  23. {%- do a.update({ k: v }) %}
  24. {%- else %}
  25. {%- do deep_merge(a[k], v) %}
  26. {%- endif %}
  27. {%- else %}
  28. {%- do a.update({ k: 'ERROR: case not contempled in merging!' }) %}
  29. {%- endif %}
  30. {%- endfor %}
  31. {%- endmacro %}
  32. {## Start with defaults from defaults.yaml ##}
  33. {% import_yaml "salt/defaults.yaml" as default_settings %}
  34. {##
  35. Setup variable using grains['os_family'] based logic, only add key:values here
  36. that differ from whats in defaults.yaml
  37. ##}
  38. {% set osrelease = salt['grains.get']('osrelease') %}
  39. {% set salt_release = salt['pillar.get']('salt:release', 'latest') %}
  40. {% set os_family_map = salt['grains.filter_by']({
  41. 'Debian': {
  42. 'pkgrepo': 'deb http://repo.saltstack.com/apt/' +
  43. salt['grains.get']('os')|lower + '/' + salt['grains.get']('osmajorrelease', osrelease)|string + '/amd64/' + salt_release + ' ' + salt['grains.get']('oscodename') + ' main',
  44. 'key_url': 'https://repo.saltstack.com/apt/' + salt['grains.get']('os')|lower + '/' + salt['grains.get']('osmajorrelease', osrelease)|string + '/amd64/' + salt_release + '/SALTSTACK-GPG-KEY.pub',
  45. 'libgit2': 'libgit2-22',
  46. 'pyinotify': 'python-pyinotify',
  47. 'gitfs': {
  48. 'pygit2': {
  49. 'install_from_source': True,
  50. 'version': '0.22.1',
  51. 'git': {
  52. 'require_state': False,
  53. 'install_from_package': 'git',
  54. },
  55. 'libgit2': {
  56. 'install_from_source': False,
  57. },
  58. },
  59. },
  60. },
  61. 'RedHat': {
  62. 'pkgrepo': 'https://repo.saltstack.com/yum/redhat/$releasever/$basearch/' + salt_release,
  63. 'key_url': 'https://repo.saltstack.com/yum/redhat/$releasever/$basearch/' + salt_release + '/SALTSTACK-GPG-KEY.pub',
  64. 'pygit2': salt['grains.filter_by']({
  65. 'Fedora': 'python2-pygit2',
  66. 'default': 'python-pygit2',
  67. }, grain='os'),
  68. 'python_git': 'GitPython',
  69. 'gitfs': {
  70. 'pygit2': {
  71. 'install_from_source': False,
  72. 'git': {
  73. 'require_state': False,
  74. 'install_from_package': 'git',
  75. },
  76. },
  77. },
  78. 'master': {
  79. 'gitfs_provider': 'pygit2'
  80. },
  81. },
  82. 'Suse': {},
  83. 'Gentoo': {
  84. 'salt_master': 'app-admin/salt',
  85. 'salt_minion': 'app-admin/salt',
  86. 'salt_syndic': 'app-admin/salt',
  87. 'salt_api': 'app-admin/salt',
  88. 'salt_cloud': 'app-admin/salt',
  89. },
  90. 'Arch': {
  91. 'salt_master': 'salt',
  92. 'salt_minion': 'salt',
  93. 'salt_syndic': 'salt',
  94. 'salt_cloud': 'salt',
  95. 'salt_api': 'salt',
  96. 'salt_ssh': 'salt',
  97. 'pygit2': 'python2-pygit2',
  98. 'libgit2': 'libgit2',
  99. },
  100. 'Alpine': {
  101. 'salt_master': 'salt-master',
  102. 'salt_minion': 'salt-minion',
  103. 'salt_syndic': 'salt-syndic',
  104. 'salt_cloud': 'salt-cloud',
  105. 'salt_api': 'salt-api',
  106. 'salt_ssh': 'salt-ssh',
  107. 'pygit2': 'py2-pygit2',
  108. 'libgit2': 'libgit2',
  109. },
  110. 'FreeBSD': {
  111. 'salt_master': 'py27-salt',
  112. 'salt_minion': 'py27-salt',
  113. 'salt_syndic': 'py27-salt',
  114. 'salt_cloud': 'py27-salt',
  115. 'salt_api': 'py27-salt',
  116. 'salt_ssh': 'py27-salt',
  117. 'python_git': 'py27-GitPython',
  118. 'pygit2': 'py27-pygit2',
  119. 'config_path': '/usr/local/etc/salt',
  120. 'minion_service': 'salt_minion',
  121. 'master_service': 'salt_master',
  122. 'api_service': 'salt_api',
  123. 'syndic_service': 'salt_syndic',
  124. },
  125. 'OpenBSD': {
  126. 'salt_master': 'salt',
  127. 'salt_minion': 'salt',
  128. 'salt_syndic': 'salt',
  129. 'salt_cloud': 'salt',
  130. 'salt_api': 'salt',
  131. 'salt_ssh': 'salt',
  132. 'config_path': '/etc/salt',
  133. 'minion_service': 'salt_minion',
  134. 'master_service': 'salt_master',
  135. 'python_git': 'py-GitPython',
  136. },
  137. 'Windows': {
  138. 'salt_minion': 'saltstack.minion',
  139. 'config_path': 'C:\salt\conf',
  140. 'minion_service': 'salt-minion',
  141. },
  142. }, merge=salt['grains.filter_by']({
  143. 'Ubuntu': {
  144. 'pkgrepo': 'deb http://repo.saltstack.com/apt/' +
  145. salt['grains.get']('os')|lower + '/' + osrelease + '/amd64/' + salt_release + ' ' + salt['grains.get']('oscodename') + ' main',
  146. 'key_url': 'https://repo.saltstack.com/apt/' + salt['grains.get']('os')|lower + '/' + osrelease + '/amd64/' + salt_release + '/SALTSTACK-GPG-KEY.pub',
  147. 'pygit2': 'python-pygit2',
  148. 'gitfs': {
  149. 'pygit2': {
  150. 'install_from_source': False,
  151. 'git': {
  152. 'require_state': False,
  153. 'install_from_package': None,
  154. },
  155. },
  156. },
  157. },
  158. 'Raspbian': {
  159. 'pkgrepo': 'deb http://repo.saltstack.com/apt/' +
  160. salt['grains.get']('os_family')|lower + '/' + salt['grains.get']('osmajorrelease', osrelease)|string + '/armhf/' + salt_release + ' ' + salt['grains.get']('oscodename') + ' main',
  161. 'key_url': 'https://repo.saltstack.com/apt/' + salt['grains.get']('os_family')|lower + '/' + salt['grains.get']('osmajorrelease', osrelease)|string + '/armhf/' + salt_release + '/SALTSTACK-GPG-KEY.pub',
  162. },
  163. 'SmartOS': {
  164. 'salt_master': 'salt',
  165. 'salt_minion': 'salt',
  166. 'salt_syndic': 'salt',
  167. 'salt_cloud': 'salt',
  168. 'salt_api': 'salt',
  169. 'salt_ssh': 'salt',
  170. 'minion_service': 'salt:minion',
  171. 'master_service': 'salt:master',
  172. 'python_dulwich': 'py27-dulwich',
  173. 'gitfs': {
  174. 'dulwich': {
  175. 'install_from_source': False,
  176. }
  177. },
  178. 'config_path': '/opt/local/etc/salt',
  179. 'master': {
  180. 'gitfs_provider': 'dulwich'
  181. },
  182. }
  183. }, grain='os', merge=salt['pillar.get']('salt:lookup')))
  184. %}
  185. {## Merge the flavor_map to the default settings ##}
  186. {% do deep_merge(default_settings.salt,os_family_map) %}
  187. {## Merge in salt:lookup pillar ##}
  188. {% set salt_settings = salt['pillar.get'](
  189. 'salt',
  190. default=default_settings.salt,
  191. merge=True)
  192. %}