if  [  "$OBA_CREATEDB"  =  "y"  ];  then
  message  "${MESSAGE_COLOR}Creating PostgreSQL oba user...${DEFAULT_COLOR}"  &&
  source  /etc/sysconfig/postgresql                                           &&
  su  $USER  -c  "createuser  -a  -d  oba"  ||  true
else
  message  "${MESSAGE_COLOR}You'll need to create the oba user${DEFAULT_COLOR}"
fi  &&

message  "${MESSAGE_COLOR}Setup OBA from http://localhost/oba/admin.pl"    \
         "The OBA install guide says to add the following to httpd.conf:"  &&
message  "AddHandler cgi-script .pl"                                       &&
message  "Alias /oba/ <location to oba>/"                                  &&
message  "<Directory <location to oba>"                                    &&
message  " Options +ExecCGI"                                               &&
message  "</Directory>"                                                    &&
message  "<Directory <location to oba>/users>"                             &&
message  " Order Deny,Allow"                                               &&
message  " Deny from All"                                                  &&
message  "</Directory>${DEFAULT_COLOR}"
