Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
making the installer create the requests db
Browse files Browse the repository at this point in the history
  • Loading branch information
BuzzTroll committed Sep 13, 2010
1 parent 841e31b commit b1ec2f9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lantorrent/install.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
#!/bin/bash

if [ "X$NIMBUS_HOME" == "X" ]; then
echo "NIMBUS_HOME is not set."
echo "This installation program is only used for the head node."
echo "It is not used on the VMMs and it is typically only called from the main installer"
exit
fi

dir=`dirname $0`
cd $dir
cp -r `pwd` $NIMBUS_HOME/
cd $NIMBUS_HOME/lantorrent
sqlite3 etc/req.db < etc/lt.sql
exit $?

0 comments on commit b1ec2f9

Please sign in to comment.