Changeset bb8e6bc


Ignore:
Timestamp:
05/05/2006 07:09:01 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
fb6b1c5
Parents:
eca59ce
Message:

Merged r2645 from trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • master.sh

    reca59ce rbb8e6bc  
    5757[[ $VERBOSITY > 0 ]] && echo "OK"
    5858#
    59 [[ $VERBOSITY > 0 ]] && echo -n "Loading optimization config..."
    60 source optimize/opt_config
    61 [[ $? > 0 ]] && echo " optimize/opt_config did not load.." && exit
    62 [[ $VERBOSITY > 0 ]] && echo "OK"
    63 #
    64 [[ $VERBOSITY > 0 ]] && echo -n "Loading compare module..."
    65 source $COMMON_DIR/func_compare.sh
    66 [[ $? > 0 ]] && echo "$COMMON_DIR/func_compare.sh did not load.." && exit
    67 [[ $VERBOSITY > 0 ]] && echo "OK"
    68 #
    6959[[ $VERBOSITY > 0 ]] && echo -n "Loading config module <$MODULE_CONFIG>..."
    7060source $MODULE_CONFIG
     
    465455fi
    466456echo "${nl_}${SD_BORDER}${nl_}"
     457
     458# Loadd additional modules or configuration files based on global settings
     459# compare module
     460if [[ "$COMPARE" = "1" ]]; then
     461  [[ $VERBOSITY > 0 ]] && echo -n "Loading compare module..."
     462  source $COMMON_DIR/func_compare.sh
     463  [[ $? > 0 ]] && echo "$COMMON_DIR/func_compare.sh did not load.." && exit
     464  [[ $VERBOSITY > 0 ]] && echo "OK"
     465fi
     466#
     467# optimize configurations
     468if [[ "$OPTIMIZE" != "0" ]]; then
     469  [[ $VERBOSITY > 0 ]] && echo -n "Loading optimization config..."
     470  source optimize/opt_config
     471  [[ $? > 0 ]] && echo " optimize/opt_config did not load.." && exit
     472  [[ $VERBOSITY > 0 ]] && echo "OK"
     473fi
     474#
    467475
    468476# Prevents setting "-d /" by mistake.
Note: See TracChangeset for help on using the changeset viewer.