Changeset 2129

Show
Ignore:
Timestamp:
04/14/08 05:10:58 (5 months ago)
Author:
anarcat
Message:

be more verbose in template expansion

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • alternc/trunk/install/alternc.install

    r2128 r2129  
    161161# Expand templates in the right place 
    162162# 
     163echo -n "Expanding variables in configuration files:" 
    163164for file in $CONFIG_FILES; do 
    164165    TEMPLATE="$TEMPLATE_DIR/${file##etc/}" 
     166    echo -n " $file" 
    165167    if [ -f "$TEMPLATE" ]; then 
    166168        sed -f "$SED_SCRIPT" < $TEMPLATE > /$file 
    167169    fi 
    168170done 
     171echo "." 
    169172rm -f $SED_SCRIPT 
    170173