Skip to content
Snippets Groups Projects
Commit 8937fdb7 authored by jdh8d's avatar jdh8d
Browse files

added zanalyze and made appropriate changes, including many other typos/bugs/etc.

parent 7f234b82
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
/build-all.sh -text
/build_diehard.sh -text
/cfar_postgres_setup.sh -text
/cfar_postgres_setup_for_other.sh -text
/clean-all.sh -text
/clean_diehard.sh -text
/get-peasoup-packages.sh -text
......
......@@ -111,6 +111,6 @@ cd $PEASOUP_UMBRELLA_DIR
echo
echo
echo "Overall build complete."
echo "peasoup/cfar_umbrella Overall build complete."
echo
echo
#!/bin/bash -x
#Create Database User and Table
source set_env_vars
other=$1
echo other is $other
sudo su -c "dropdb peasoup_${other}" postgres
sudo su -c "createdb -O ${other} peasoup_${other}" postgres
PGDATABASE=peasoup_${other} $PEASOUP_HOME/tools/db/pdb_setup.sh
for i in $(seq 0 4)
do
sudo su -c "dropdb peasoup_${other}_v$i" postgres
sudo su -c "createdb -O ${other} peasoup_${other}_v$i" postgres
#Setup the Database to store PEASOUP info
PGDATABASE=peasoup_${other}_v$i $PEASOUP_HOME/tools/db/pdb_setup.sh
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment