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.

95 line
2.2KB

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