Saltstack Official Linux Formula
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

13 lines
458B

  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