ddc131a85103381e8dd154401172538d9c771f99
[feisty_meow.git] / infobase / feisty_inits / dot.bashrc-root
1
2 ##############
3
4 # provides a macro to initialize the feisty meow environment for the "root" user.
5
6 ##############
7
8 if [ -f /etc/bash.bashrc ]; then
9   # drag in the default version of this file.  this may not be needed if your
10   # .bashrc script already has substantial code or already does this.
11   source /etc/bash.bashrc
12 elif [ -f /etc/bashrc ]; then
13   # pull in the mac's version of this file.
14   source /etc/bashrc
15 fi
16
17 ##############
18
19 # set the history sizes to be much larger, and do this whether we load the
20 # feisty meow environment or not.
21
22 export HISTSIZE=1000000
23 export HISTFILESIZE=8000000
24
25 ##############
26
27 # system-wide install (will be fixed by connect_feisty_meow script):
28 export FEISTY_MEOW_APEX="/opt/feistymeow.org/feisty_meow"
29
30 # the "gofeisty" macro enables the feisty_meow environment.  this can be used
31 # after logging in, and avoids loading the feisty meow environment automatically.
32 alias gofeisty='source "$FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh"'
33
34 # if not commented out, then feisty meow will run all the unit tests during builds.
35 #export RUN_ALL_TESTS=true
36
37 # turns on noisy debugging in feisty meow scripts if uncommented.
38 #export DEBUG_FEISTY_MEOW=true
39
40 ##############
41