echo 'Adding "postgres" group and user'
groupadd postgres
useradd -g postgres -d /opt/pgsql -s /bin/sh -c "PostgreSQL User" postgres
echo Done
