Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 22591e626f177812260b1401201b7806 > scriptlet

firebird-server-common-2.5.2.26540-4.mga4.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

POSTIN

/bin/sh
/usr/bin/systemd-tmpfiles --create firebird.conf

POSTUN

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