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

123456789101112
  1. {%- from "linux/map.jinja" import system with context %}
  2. # History across sessions for Bash
  3. if [ -n "$BASH_VERSION" ]; then
  4. # Avoid duplicates
  5. export HISTCONTROL=ignoredups:erasedups
  6. # When the shell exits, append to the history file instead of overwriting it
  7. shopt -s histappend
  8. # After each command, append to the history file and reread it
  9. export PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND$'\n'}history -a; history -c; history -r"
  10. fi