#!/bin/sh # # The contents of this file are subject to the Initial # Developer's Public License Version 1.0 (the "License"); # you may not use this file except in compliance with the # License. You may obtain a copy of the License at # http://www.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl. # # Software distributed under the License is distributed AS IS, # WITHOUT WARRANTY OF ANY KIND, either express or implied. # See the License for the specific language governing rights # and limitations under the License. # # The Original Code was created by Mark O'Donohue # for the Firebird Open Source RDBMS project. # # Copyright (c) Mark O'Donohue # and all contributors signed below. # # All Rights Reserved. # Contributor(s): ______________________________________. # Alex Peshkoff # #------------------------------------------------------------------------ # init defaults DefaultLibrary=libfbclient #------------------------------------------------------------------------ # For security reasons most files in firebird installation are # root-owned and world-readable(executable) only (including firebird). # For some files RunUser (firebird) # must have write access - lock and log for examples. MakeFileFirebirdWritable() { FileName=$1 chown $RunUser:$RunGroup $FileName chmod u=rw,go= $FileName } #------------------------------------------------------------------------ # fixArcSpecificPermissions # Change the permissions specific for CS fixArcSpecificPermissions() { # No such permissions for SS return 0 } #------------------------------------------------------------------------ # Update inetd service entry # Check to see if we have xinetd installed or plain inetd. # Install differs for each of them. updateInetdServiceEntry() { # do nothing for SS return 0 }