Sophie

Sophie

distrib > Fedora > 14 > i386 > media > updates > by-pkgid > 312d82dccee9c15c1fd814fe767dcfdb > scriptlet

postgresql-server-8.4.9-1.fc14.i686.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