Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > f58052367ef83941156724d5757e5882 > scriptlet

postgresql-server-8.4.9-1.fc14.x86_64.rpm

PREIN

/bin/sh
/usr/sbin/groupadd -g 26 -o -r postgres >/dev/null 2>&1 || :
/usr/sbin/useradd -M -N -g postgres -o -r -d /var/lib/pgsql -s /bin/bash \
	-c "PostgreSQL Server" -u 26 postgres >/dev/null 2>&1 || :

PREUN

/bin/sh
if [ $1 = 0 ] ; then
	/sbin/service postgresql stop >/dev/null 2>&1
	/sbin/chkconfig --del postgresql
fi

POSTIN

/bin/sh
/sbin/chkconfig --add postgresql
/sbin/ldconfig

POSTUN

/bin/sh
/sbin/ldconfig 
if [ $1 -ge 1 ] ; then
	/sbin/service postgresql condrestart >/dev/null 2>&1 || :
fi