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.

96 lines
2.2KB

  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. ---
  4. salt:
  5. version: ''
  6. pin_version: false
  7. py_ver: '' ## py2 is default
  8. rootuser: root
  9. rootgroup: root
  10. install_packages: true
  11. use_pip: false
  12. clean_config_d_dir: true
  13. restart_via_at: false
  14. config_path: /etc/salt
  15. minion_remove_config: false
  16. master_remove_config: false
  17. minion_config_use_TOFS: false
  18. master_config_use_TOFS: false
  19. minion_service: salt-minion
  20. minion_service_details:
  21. # special name 'ignore' will not output anything about the service
  22. state: running
  23. enabled: true
  24. master_service: salt-master
  25. master_service_details:
  26. # special name 'ignore' will not output anything about the service
  27. state: running
  28. enabled: true
  29. api_service: salt-api
  30. api_service_details:
  31. # special name 'ignore' will not output anything about the service
  32. state: running
  33. enabled: true
  34. syndic_service: salt-syndic
  35. salt_master: salt-master
  36. salt_minion: salt-minion
  37. salt_syndic: salt-syndic
  38. salt_cloud: salt-cloud
  39. salt_api: salt-api
  40. salt_ssh: salt-ssh
  41. pkgrepo: '' # see osfamilymap
  42. ssh_roster: {} # see pillar data
  43. python_git: python-git
  44. python_dulwich: python-dulwich
  45. master:
  46. gitfs_provider: gitpython
  47. minion:
  48. master_type: true # see init.sls & standalone.sls
  49. gitfs:
  50. dulwich:
  51. install_from_source: true
  52. pygit2:
  53. install_from_source: true
  54. version: 0.23.0
  55. git:
  56. # if not false, should be state name
  57. require_state: false
  58. install_from_package: git
  59. libgit2:
  60. version: 0.23.0
  61. install_from_source: true
  62. build_parent_dir: /usr/src/
  63. # hash necessary until github issue #9272 is addressed
  64. download_hash: 683d1164e361e2a0a8d52652840e2340
  65. gitpython:
  66. install_from_source: false
  67. cloud:
  68. template_sources:
  69. providers: salt://salt/files/cloud.providers.d
  70. profiles: salt://salt/files/cloud.profiles.d
  71. maps: salt://salt/files/cloud.maps.d
  72. salt_formulas:
  73. list: {} # via pillar data
  74. checkout_orig_branch: false
  75. git_opts:
  76. default:
  77. baseurl: https://github.com/saltstack-formulas
  78. basedir: /srv/formulas
  79. update: false
  80. options:
  81. rev: master
  82. output_loglevel: 'quiet'