Saltstack Official Linux Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

13 行
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