Sophie

Sophie

distrib > Mandriva > 2007.0 > i586 > media > contrib-release > by-pkgid > b81a9681aa76718ffc08873ab78ce7aa > scriptlet

firebird-server-common-2.0.0.12724-3mdv2007.0.i586.rpm

PREIN

/bin/sh
# Create the firebird group if it doesn't exist
grep -q firebird /etc/group || /usr/sbin/groupadd -r firebird || true
grep -q firebird /etc/passwd || /usr/sbin/useradd -d / -g firebird -s /sbin/nologin -r firebird || true

# 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