Нет описания

map.jinja 659B

12345678910111213141516171819202122232425
  1. {% set package_names = salt['grains.filter_by']({
  2. 'Debian': {
  3. 'sharutils': 'sharutils',
  4. 'lsyncd': 'lsyncd',
  5. 'tcpdump': 'tcpdump',
  6. 'debhelper': 'debhelper',
  7. 'devscripts': 'devscripts',
  8. 'jq': 'jq',
  9. 'git': 'git',
  10. 'm2crypto': 'm2crypto',
  11. 'unzip': 'unzip',
  12. 'zip': 'zip',
  13. },
  14. 'Ubuntu': {
  15. 'sharutils': 'sharutils',
  16. 'tcpdump': 'tcpdump',
  17. 'jq': 'jq',
  18. 'git': 'git',
  19. 'm2crypto': 'm2crypto',
  20. 'net_tools': 'net-tools',
  21. 'unzip': 'unzip',
  22. 'zip': 'zip',
  23. }
  24. }, grain='os', merge=salt['pillar.get']('package_names:lookup')) %}