123456789101112131415161718192021222324 |
- fqdn="{{ grains['id'] }}"
- PS1='${debian_chroot:+($debian_chroot)}${fqdn}:\w\$ '
- export LS_OPTIONS='--color=auto'
- eval "`dircolors`"
- alias ls='ls $LS_OPTIONS'
- alias ll='ls $LS_OPTIONS -l'
- alias l='ls $LS_OPTIONS -lA'
- HISTSIZE=1000
- HISTFILESIZE=2000
- shopt -s histappend
- if [ -f ~/.bash_aliases ]; then
- . ~/.bash_aliases
- fi
|