]> git.friedersdorff.com Git - max/saltfiles.git/blob - states/bash/files/bash_profile
Implement bash state in saltstack
[max/saltfiles.git] / states / bash / files / bash_profile
1 if [ -r ~/.profile ]; then
2         . ~/.profile;
3 fi
4
5 case "$-" in *i*)
6         if [ -r ~/.bashrc ]; then 
7                 . ~/.bashrc
8         fi
9         ;; 
10 esac