echo 'Removing PostgreSQL from the system startup sequence'
rm -f /etc/rc0.d/K30postgresql
rm -f /etc/rc3.d/S05postgresql
echo 'Removing the "postgres" user and group'
userdel postgres
groupdel postgres
echo Done
