Changeset 94 for confman/confman


Ignore:
Timestamp:
04/20/2006 19:49:11 (6 years ago)
Author:
ccowart
Message:

Tweaked the inst function

File:
1 edited

Legend:

Unmodified
Added
Removed
  • confman/confman

    r93 r94  
    3333        . $GCONF 
    3434else 
    35         echo "Error: Global config file couldn't be located" >&2 
     35        echo "Global config file couldn't be located" >&2 
    3636        exit 1 
    3737fi 
     
    5151        . $REPO_LIBRARY 
    5252else 
    53         echo "Error: Couldn't source the confman shell library" >&2 
     53        echo "Couldn't source the confman shell library" >&2 
    5454        exit 1 
    5555fi 
     
    5959        . $REPO_DOCS 
    6060else 
    61         echo "Error: Couldn't source the confman shell library" >&2 
     61        echo "Couldn't source the confman shell library" >&2 
    6262        exit 1 
    6363fi 
     
    6767        LAYERS=`cat $RECIPE_PATH | grep "^[^#]"` 
    6868else 
    69         echo "Error: Couldn't read the host's recipe!" >&2 
     69        echo "Couldn't read the host's recipe!" >&2 
    7070        exit 1 
    7171fi 
     
    171171        local file livefile 
    172172 
    173         if [ -z $* ] ; then 
     173        if [ -z "$*" ] ; then 
    174174                print_usage 1 
    175175        elif [ ! -e $1 ] ; then 
     
    181181                echo "Change this file to your log message." > $msg 
    182182                ${EDITOR} $msg 
    183                 update || conf_cleanexit 
     183 
     184                # If there's a failure, the user will update. Don't need to 
     185                # hide this from them. 
     186                # update || conf_cleanexit 
    184187 
    185188                echo "Installation operation started." >&2 
Note: See TracChangeset for help on using the changeset viewer.