if [[ $FB_CLIENT == n ]]; then

# we do this here, so that things are not tracked, as these files are 
# constantly modified in normal use
local FF FileName LCK LOG                   &&

cd $FB_PREFIX                               &&
# create lock files
  LCK=$INSTALL_ROOT/var/lock/firebird       &&
  mkdir -p $LCK                             &&
  for FF in isc_init1 isc_lock1 isc_event1 isc_guard1
    do
      FileName=$LCK/$FF.`hostname`          &&
      touch $FileName                       &&
      chown firebird:firebird $FileName     &&
      chmod u+w $FileName                   &&
      ln -sf $FileName ./
    done                                    &&

# log file
  mkdir -p $INSTALL_ROOT/var/log/           &&
  LOG=$INSTALL_ROOT/var/log/firebird.log    &&
  touch  $LOG                               &&
  chown firebird:firebird $LOG              &&
  chmod o=,ug=rw $LOG                       &&
  ln -sf $LOG ./
fi
