048d94436c1f5dfb9f04ded474e7fe74b2efdbc5
[mirror/dsa-puppet.git] / modules / debian-org / files / root-dotfiles / bashrc
1 # ~/.bashrc: executed by bash(1) for non-login shells.
2
3 ## THIS FILE IS UNDER PUPPET CONTROL.
4 ## LOCAL CHANGES WILL BE OVERWRITTEN.
5
6 if [ "$PS1" ]; then
7   typeset HISTCONTROL=ignoreboth
8   typeset HISTSIZE=50000
9
10   export LS_OPTIONS='--color=auto'
11   eval "`dircolors`"
12   alias ls='ls $LS_OPTIONS'
13   alias ll='ls $LS_OPTIONS -l'
14   alias l='ls $LS_OPTIONS -lA'
15
16   if [ -f /usr/share/bash-completion/bash_completion ]; then
17     . /usr/share/bash-completion/bash_completion
18   fi
19
20   PATH="$PATH:/usr/lib/nagios/plugins"
21 fi
22
23 # vim: set ft=sh ts=2 sw=2 et ai si: