Saltstack Official Linux 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.

81 lines
1.9KB

  1. {%- from "linux/map.jinja" import system with context %}
  2. include:
  3. {%- if system.repo|length > 0 %}
  4. - linux.system.repo
  5. {%- endif %}
  6. {%- if system.pkgs|length > 0 %}
  7. - linux.system.package
  8. {%- endif %}
  9. {%- if pillar.linux.system.autoupdates is defined %}
  10. - linux.system.autoupdates
  11. {%- endif %}
  12. {%- if system.timezone is defined %}
  13. - linux.system.timezone
  14. {%- endif %}
  15. {%- if system.kernel is defined %}
  16. - linux.system.kernel
  17. {%- if system.kernel.hugepages is defined %}
  18. - linux.system.hugepages
  19. {%- endif %}
  20. {%- if system.kernel.sriov is defined %}
  21. - linux.system.sriov
  22. {%- endif %}
  23. {%- endif %}
  24. {%- if system.cpu is defined %}
  25. - linux.system.cpu
  26. {%- endif %}
  27. {%- if system.locale|length > 0 %}
  28. - linux.system.locale
  29. {%- endif %}
  30. {%- if system.prompt is defined %}
  31. - linux.system.prompt
  32. {%- endif %}
  33. {%- if system.bash is defined %}
  34. - linux.system.bash
  35. {%- endif %}
  36. {%- if system.user|length > 0 %}
  37. - linux.system.user
  38. {%- endif %}
  39. {%- if system.group|length > 0 %}
  40. - linux.system.group
  41. {%- endif %}
  42. {%- if system.rc is defined %}
  43. - linux.system.rc
  44. {%- endif %}
  45. {%- if system.job|length > 0 %}
  46. - linux.system.job
  47. {%- endif %}
  48. {%- if grains.os_family == 'RedHat' %}
  49. - linux.system.selinux
  50. {%- endif %}
  51. {%- if system.ca_certificates is defined %}
  52. - linux.system.certificate
  53. {%- endif %}
  54. {%- if system.apparmor is defined %}
  55. - linux.system.apparmor
  56. {%- endif %}
  57. {%- if system.console is defined %}
  58. - linux.system.console
  59. {%- endif %}
  60. {%- if system.doc is defined %}
  61. - linux.system.doc
  62. {%- endif %}
  63. {%- if system.limit|length > 0 %}
  64. - linux.system.limit
  65. {%- endif %}
  66. {%- if system.motd|length > 0 %}
  67. - linux.system.motd
  68. {%- endif %}
  69. {%- if system.get('policyrcd', [])|length > 0 %}
  70. - linux.system.policyrcd
  71. {%- endif %}
  72. {%- if system.haveged is defined %}
  73. - linux.system.haveged
  74. {%- endif %}
  75. {%- if system.config is defined %}
  76. - linux.system.config
  77. {%- endif %}
  78. {%- if system.sudo is defined %}
  79. - linux.system.sudo
  80. {%- endif %}