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

9 роки тому
9 роки тому
9 роки тому
123456789101112131415161718192021222324
  1. {%- from "linux/map.jinja" import system with context %}
  2. {%- if system.enabled %}
  3. /etc/profile.d/prompt.sh:
  4. file.managed:
  5. - source: salt://linux/files/prompt.sh
  6. - template: jinja
  7. /etc/bash.bashrc:
  8. file.replace:
  9. - pattern: ".*PS1=.*"
  10. - repl: ": # Prompt is set by /etc/profile.d/prompt.sh"
  11. /etc/skel/.bashrc:
  12. file.replace:
  13. - pattern: ".*PS1=.*"
  14. - repl: ": # Prompt is set by /etc/profile.d/prompt.sh"
  15. /root/.bashrc:
  16. file.replace:
  17. - pattern: ".*PS1=.*"
  18. - repl: ": # Prompt is set by /etc/profile.d/prompt.sh"
  19. {%- endif %}