#!/bin/sh
set -u

# Full install of pg8.2, aolserver4.5, varoious components and lates OpenACS from cvs
cd /home/start/oacs-installation-scripts/

#1. install pg

echo "........ running postgres installation script ........"
./1-pg82
echo "........ DONE running postgres installation script ........"

#2. run pg db installation script

echo "........ running setup pg db script ........"
./2-pg_db_install
echo "........ DONE running pg db script ........"


#3. install aolserver

echo "........ running aolserver install script ........"
./3-aolserver
echo "........ DONE running aolserver install script ........"


#4. install openacs

echo "........ running openacs install script ........"
./4-OACS
echo "........ DONE running openacs install script ........"

