Skip to content

Commit

Permalink
vagrant: say how to download glassfish and solr #725 #765
Browse files Browse the repository at this point in the history
  • Loading branch information
pdurbin committed Jul 24, 2014
1 parent 4bbb40b commit 3142c2c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/vagrant/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ chkconfig postgresql on
GLASSFISH_USER=glassfish
echo "Ensuring Unix user '$GLASSFISH_USER' exists"
useradd $GLASSFISH_USER || :
GLASSFISH_ZIP=`ls /dataverse/downloads/glassfish*zip`
GLASSFISH_ZIP='/dataverse/downloads/glassfish-4.0.zip'
if [ ! -f $GLASSFISH_ZIP ]; then
echo "Couldn't find $GLASSFISH_ZIP! Please run the script in the \"downloads\" directory followed by \"vagrant destroy\". Then try \"vagrant up\" again." >&2
exit 1
fi
GLASSFISH_USER_HOME=~glassfish
GLASSFISH_ROOT=$GLASSFISH_USER_HOME/glassfish4
if [ ! -d $GLASSFISH_ROOT ]; then
Expand Down

0 comments on commit 3142c2c

Please sign in to comment.