Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6868 dpurdie 1
#! /bin/bash
2
################################################################################
3
# Post install script
4
# Must return 0 if all is well
5
#
6
function error(){
7
    echo "ERROR: $*"
8
    exit 1
9
}
10
 
11
#   Insert the configure script into the kde startup
12
cf='/root/vix/configureVM'
13
[ -f "$cf" ] || error "Cannot find file" $cf
14
 
15
#
16
#   Run the script self installer
17
#
18
"$cf" -install
19
 
20
true