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.
|
- {%- from "linux/map.jinja" import system with context %}
- {%- if system.enabled %}
-
- /etc/profile.d/prompt.sh:
- file.managed:
- - source: salt://linux/files/prompt.sh
- - template: jinja
-
- {%- if grains.os_family == 'Debian' %}
- /etc/bash.bashrc:
- file.replace:
- - pattern: ".*PS1=.*"
- - repl: ": # Prompt is set by /etc/profile.d/prompt.sh"
-
- /etc/skel/.bashrc:
- file.replace:
- - pattern: ".*PS1=.*"
- - repl: ": # Prompt is set by /etc/profile.d/prompt.sh"
-
- /root/.bashrc:
- file.replace:
- - pattern: ".*PS1=.*"
- - repl: ": # Prompt is set by /etc/profile.d/prompt.sh"
- {%- endif %}
-
- {%- endif %}
|