Sophie

Sophie

distrib > Mandriva > 2010.1 > x86_64 > by-pkgid > 9db8bd07c03840ad44af1b7ce37366ec > scriptlet

firebird-server-common-2.5.1.26351.0-1mdv2010.2.x86_64.rpm

PREIN

/bin/sh
# Create the firebird user and group if it doesn't exist
/usr/share/rpm-helper/add-user firebird $1 firebird /var/lib/firebird/data /sbin/nologin 
# Add gds_db to /etc/services if needed
FileName=/etc/services
newLine="gds_db          3050/tcp  # Firebird SQL Database Remote Protocol"
oldLine=`grep "^gds_db" $FileName`
if [ -z "$oldLine" ]; then
	echo $newLine >> $FileName
fi

POSTUN

/bin/sh
/usr/share/rpm-helper/del-user firebird $1 firebird