Another little bug in installkernel... why do you hate it ??


--------------------------------------------------------------------
/sbin/installkernel: line 76: syntax error near unexpected token `}'
/sbin/installkernel: line 76: `}'
execution of script failed        
--------------------------------------------------------------------


line 58 --------------------------------
function add_on_top () {
    line=$1
    file=$2
    tmp=/tmp/$(basename $file).$$
    echo "$line" > $tmp
    cat $file >> $tmp
    if [ "$?" = "0" ];then
        mv -f $tmp $file
    else
        return 1;
    fi
}
 
    if [ "$?" = "0" ];then      
        mv -f $tmp $file        
    else                        
        return 1;               
    fi                          
}                               
    
--------------------------------



-- 
Yours Sincerly,                          __   _
              Christian Zoffoli         / /  (_)__  __ ____  __
                                       / /__/ / _ \/ // /\ \/ /  
 http://www.littlepenguin.org         /____/_/_//_/_,_/ /_/_\ 
  [EMAIL PROTECTED]     * *  LittlePenguin H 1   L.U.G.  * *

Reply via email to