Saltstack Official Linux Formula
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

64 lines
1.8KB

  1. {%- from "linux/map.jinja" import system with context %}
  2. {%- if system.enabled %}
  3. {%- for file_name, file in system.file.items() %}
  4. linux_file_{{ file_name }}:
  5. {%- if file.serialize is defined %}
  6. file.serialize:
  7. - formatter: {{ file.serialize }}
  8. {%- if file.contents is defined %}
  9. - dataset: {{ file.contents|json }}
  10. {%- elif file.contents_pillar is defined %}
  11. - dataset_pillar: {{ file.contents_pillar }}
  12. {%- endif %}
  13. {%- else %}
  14. file.managed:
  15. {%- if file.source is defined %}
  16. - source: {{ file.source }}
  17. {%- if file.hash is defined %}
  18. - source_hash: {{ file.hash }}
  19. {%- else %}
  20. - skip_verify: True
  21. {%- endif %}
  22. {%- if file.template is defined %}
  23. - template: {{ file.template }}
  24. {%- if file.defaults is defined %}
  25. - defaults: {{ file.defaults|json }}
  26. {%- endif %}
  27. {%- if file.context is defined %}
  28. - context: {{ file.context|json }}
  29. {%- endif %}
  30. {%- endif %}
  31. {%- elif file.contents is defined %}
  32. - contents: {{ file.contents|json }}
  33. {%- elif file.contents_pillar is defined %}
  34. - contents_pillar: {{ file.contents_pillar }}
  35. {%- elif file.contents_grains is defined %}
  36. - contents_grains: {{ file.contents_grains }}
  37. {%- endif %}
  38. {%- endif %}
  39. {%- if file.name is defined %}
  40. - name: {{ file.name }}
  41. {%- else %}
  42. - name: {{ file_name }}
  43. {%- endif %}
  44. - makedirs: {{ file.get('makedirs', 'True') }}
  45. - replace: {{ file.get('replace', 'True') }}
  46. - user: {{ file.get('user', 'root') }}
  47. - group: {{ file.get('group', 'root') }}
  48. {%- if file.mode is defined %}
  49. - mode: {{ file.mode }}
  50. {%- endif %}
  51. {%- if file.dir_mode is defined %}
  52. - dir_mode: {{ file.dir_mode }}
  53. {%- endif %}
  54. {%- if file.encoding is defined %}
  55. - encoding: {{ file.encoding }}
  56. {%- endif %}
  57. {%- endfor %}
  58. {%- endif %}