6d7c5bdddb
PR: ports/157555 Submitted by: crees (me) Approved by: rene (mentor, implicit), maintainer timeout (acm, 35 days)
26 lines
446 B
Bash
26 lines
446 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD: /tmp/pcvs/ports/databases/firebird25-server/files/pkg-install.in,v 1.2 2011-07-10 17:37:11 crees Exp $
|
|
|
|
PATH=/bin:/usr/bin:/usr/sbin
|
|
|
|
case $2 in
|
|
POST-INSTALL)
|
|
cd /var/db/firebird
|
|
|
|
# Lock files
|
|
|
|
for i in isc_init1 isc_lock1 isc_event1
|
|
do
|
|
FileName=$i.`hostname`
|
|
touch $FileName
|
|
chmod uga=rw $FileName
|
|
chown firebird:firebird $FileName
|
|
done
|
|
|
|
touch firebird.log
|
|
chown firebird:firebird firebird.log security2.fdb
|
|
|
|
;;
|
|
|
|
esac
|