#!/bin/sh

.  /cygdrive/f/Pabx/bin/Definitions	# A ADAPTER

echo -n "Attention, tout va etre efface... Etes vous sur ? (O/N) "
read answer

if [ "$answer" != "O" ]
then
   echo "Abandon..."
   exit 0
fi

$PGBIN/dropdb -U $PGUSER $PGDB
$PGBIN/dropuser -U $PGADMIN $PGUSER 

