I get different results on a Fresh system

First -->
wget http://yum.postgresql.org/9.2/redhat/rhel-5-i386/pgdg-redhat92-9.2-7.noarch.rpm
yum localinstall pgdg-redhat92-9.2-7.noarch.rpm
rm /etc/yum.repos.d/pgdg-92-redhat.repo
Set new repository
db yum_repositories set pgdg9 repository \
Name 'PostgreSQL 9' \
BaseURL 'http://yum.postgresql.org/9.2/redhat/rhel-5-i386' \
GPGCheck yes \
GPGKey file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-92 \
Visible no \
Exclude pam \
status disabled
Must needs install PostgreSQL92 or it will default to install 8.1
yum --enablerepo=pgdg9 install postgresql92 postgresql92-server postgresql92-libs
/etc/init.d/postgresql-9.2 initdb
/etc/init.d/postgresql-9.2 start
mkdir -p /etc/e-smith/templates/var/lib/pgsql/data
mkdir -p /etc/e-smith/templates-custom/var/lib/pgsql/data
cp /var/lib/pgsql/9.2/data/postgresql.conf /etc/e-smith/templates/var/lib/pgsql/data
cp /var/lib/pgsql/9.2/data/pg_hba.conf /etc/e-smith/templates/var/lib/pgsql/data
cp /var/lib/pgsql/9.2/data/postgresql.conf /etc/e-smith/templates-custom/var/lib/pgsql/data
cp /var/lib/pgsql/9.2/data/pg_hba.conf /etc/e-smith/templates-custom/var/lib/pgsql/data
Restart Service:
/etc/init.d/postgresql-9.2 restart
Login as Postgres:
su postgres
Going to change Superuser password:
psql -U postgres -d template1
ERROR
bash: psql: command not found
Stuck here on a fresh system.
On the other SME 8 system, which have a lot of contribs, it is still trying to install "pam".
Additionally:
yum --enablerepo=centosplus install postgresql postgresql-contrib postgresql-devel postgresql-docs postgresql-pl postgresql-python postgresql-test
Returns
Setting up Install Process
No package postgresql available.
No package postgresql-contrib available.
No package postgresql-devel available.
No package postgresql-docs available.
No package postgresql-pl available.
No package postgresql-python available.
No package postgresql-test available.
Nothing to do
I'm not sure what else I did, but installing 8.1 is a no-go as well?. Did I mess up my repository somehow? Can I reset repositories in SME?
If either system establishes PostgreSQL 9.2, I would be fine. I'm assuming PostgreSQL does not have to be local in order to be used, similar to MySQL.