Subversion Repositories DevTools

Rev

Blame | Last modification | View Log | RSS feed

#! /bin/bash
################################################################################
# Post install script
# Must return 0 if all is well
#
function error(){
    echo "ERROR: $*"
    exit 1
}

#   Insert the configure script into the kde startup
cf='/root/vix/configureVM'
[ -f "$cf" ] || error "Cannot find file" $cf

#
#   Run the script self installer
#
"$cf" -install

true