Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 39897add7270579d4aabc9a8e6ccdedb > scriptlet

postfix-pgsql-2.10.2-2.mga4.x86_64.rpm

POSTIN

/bin/sh
FILE=/etc/postfix/dynamicmaps.cf; if ! grep -q "^pgsql[[:space:]]" ${FILE}; then echo "pgsql	/usr/lib64/postfix/dict_pgsql.so	dict_pgsql_open" >> ${FILE}; fi;

POSTUN

/bin/sh
FILE=/etc/postfix/dynamicmaps.cf; if [ $1 = 0 -a -s $FILE ]; then  cp -p ${FILE} ${FILE}.$$; grep -v "^pgsql[[:space:]]" ${FILE}.$$ > ${FILE}; rm -f ${FILE}.$$; fi;