2005-04-29 20:16:46 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Global stuff init
|
|
|
|
|
|
|
|
Answer=""
|
|
|
|
OrigPasswd=""
|
|
|
|
TmpFile=""
|
|
|
|
FBRootDir=@prefix@
|
2005-08-16 12:04:13 +02:00
|
|
|
export FBRootDir
|
2005-04-29 20:16:46 +02:00
|
|
|
FBBin=$FBRootDir/bin
|
2005-08-16 12:04:13 +02:00
|
|
|
export FBBin
|
2005-04-29 20:16:46 +02:00
|
|
|
SecurityDatabase=security2.fdb
|
2005-08-16 12:04:13 +02:00
|
|
|
ArchiveDateTag=`date +"%Y%m%d_%H%M"`
|
|
|
|
export ArchiveDateTag
|
|
|
|
ArchiveMainFile="${FBRootDir}_${ArchiveDateTag}.tar.gz"
|
|
|
|
export ArchiveMainFile
|
2005-04-29 20:16:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Create temporary file. In case mktemp failed, do something...
|
|
|
|
|
|
|
|
MakeTemp() {
|
|
|
|
TmpFile=`mktemp -q /tmp/firebird_install.XXXXXX`
|
|
|
|
if [ $? -ne 0 ]
|
|
|
|
then
|
|
|
|
TmpFile=/tmp/firebird_install
|
|
|
|
touch $TmpFile
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Prompt for response, store result in Answer
|
|
|
|
|
|
|
|
AskQuestion() {
|
|
|
|
Test=$1
|
|
|
|
DefaultAns=$2
|
|
|
|
echo -n "${1}"
|
|
|
|
Answer="$DefaultAns"
|
|
|
|
read Answer
|
2005-08-16 12:04:13 +02:00
|
|
|
|
|
|
|
if [ -z "$Answer" ]
|
|
|
|
then
|
|
|
|
Answer="$DefaultAns"
|
|
|
|
fi
|
2005-04-29 20:16:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Prompt for yes or no answer - returns non-zero for no
|
|
|
|
|
|
|
|
AskYNQuestion() {
|
|
|
|
while echo -n "${*} (y/n): "
|
|
|
|
do
|
|
|
|
read answer rest
|
|
|
|
case $answer in
|
|
|
|
[yY]*)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
[nN]*)
|
|
|
|
return 1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Please answer y or n"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Run $1. If exit status is not zero, show output to user.
|
|
|
|
|
|
|
|
runSilent() {
|
|
|
|
MakeTemp
|
|
|
|
$1 >$TmpFile 2>&1
|
|
|
|
if [ $? -ne 0 ]
|
|
|
|
then
|
|
|
|
cat $TmpFile
|
|
|
|
echo ""
|
|
|
|
rm -f $TmpFile
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
rm -f $TmpFile
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Check for a user, running install, to be root
|
|
|
|
|
|
|
|
checkRootUser() {
|
|
|
|
|
|
|
|
if [ "`whoami`" != "root" ];
|
|
|
|
then
|
|
|
|
echo ""
|
|
|
|
echo "--- Warning ----------------------------------------------"
|
|
|
|
echo ""
|
|
|
|
echo " You need to be 'root' user to do this change"
|
|
|
|
echo ""
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
#alias
|
|
|
|
checkInstallUser() {
|
|
|
|
checkRootUser
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# check if it is running
|
|
|
|
|
|
|
|
checkIfServerRunning() {
|
|
|
|
|
|
|
|
stopSuperServerIfRunning
|
|
|
|
|
|
|
|
|
|
|
|
# Check is server is being actively used.
|
|
|
|
|
|
|
|
checkString=`ps -efww| egrep "(fbserver|fbguard)" |grep -v grep`
|
|
|
|
|
|
|
|
if [ ! -z "$checkString" ]
|
2005-08-16 12:04:13 +02:00
|
|
|
then
|
2005-04-29 20:16:46 +02:00
|
|
|
echo "An instance of the Firebird/InterBase Super server seems to be running."
|
|
|
|
echo "Please quit all interbase applications and then proceed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
checkString=`ps -efww| egrep "(fb_inet_server|gds_pipe)" |grep -v grep`
|
|
|
|
|
|
|
|
if [ ! -z "$checkString" ]
|
2005-08-16 12:04:13 +02:00
|
|
|
then
|
2005-04-29 20:16:46 +02:00
|
|
|
echo "An instance of the Firebird/InterBase server seems to be running."
|
|
|
|
echo "Please quit all interbase applications and then proceed."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2005-08-16 12:04:13 +02:00
|
|
|
# The following check for running interbase or firebird 1.0 servers.
|
|
|
|
|
|
|
|
checkString=`ps -efww| egrep "(ibserver|ibguard)" |grep -v grep`
|
|
|
|
|
|
|
|
if [ ! -z "$checkString" ]
|
|
|
|
then
|
|
|
|
echo "An instance of the Firebird/InterBase Super server seems to be running."
|
|
|
|
echo "(the ibserver or ibguard process was detected running on your system)"
|
|
|
|
echo "Please quit all Firebird applications and then proceed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
checkString=`ps -efww| egrep "(gds_inet_server|gds_pipe)" |grep -v grep`
|
|
|
|
|
|
|
|
if [ ! -z "$checkString" ]
|
|
|
|
then
|
|
|
|
echo "An instance of the Firebird/InterBase classic server seems to be running."
|
|
|
|
echo "(the gds_inet_server or gds_pipe process was detected running on your system)"
|
|
|
|
echo "Please quit all Firebird applications and then proceed."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Moved here from postinstall.sh.in. It's really easy to add appropriate
|
|
|
|
# (x)inetd stop commands sequence here now, but taking into account,
|
|
|
|
# that worked OK for a long time, but service port may be changed today,
|
|
|
|
# leave it commented here. AP, 2005.
|
|
|
|
#
|
|
|
|
# This one is commented out, since it usually works out ok, we have
|
|
|
|
# checked that no procesers are active, but inetd/xinetd is still listening
|
|
|
|
# the best thing would be to turn the service off, but I don't have time
|
|
|
|
# to do all the xinetd/inetd stuff, see the preunistall.sh script for details
|
|
|
|
#
|
|
|
|
# checkString=`netstat -an | egrep '3050.*LISTEN'`
|
|
|
|
#
|
|
|
|
# if [ ! -z "$checkString" ]
|
|
|
|
# then
|
|
|
|
# echo "An instance of the Firebird/InterBase server seems to be running."
|
|
|
|
# echo "(netstat -an reports a process is already listening on port 3050)"
|
|
|
|
# echo "Please quit all Firebird applications and then proceed."
|
|
|
|
# exit 1
|
|
|
|
# fi
|
|
|
|
|
|
|
|
|
2005-04-29 20:16:46 +02:00
|
|
|
# Stop lock manager if it is the only thing running.
|
|
|
|
|
|
|
|
for i in `ps -efww | grep "fb_lock_mgr" | grep -v "grep" | awk '{print $2}' `
|
2005-08-16 12:04:13 +02:00
|
|
|
do
|
2005-04-29 20:16:46 +02:00
|
|
|
kill $i
|
|
|
|
done
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# ask user to enter CORRECT original DBA password
|
|
|
|
|
|
|
|
askForOrigDBAPassword() {
|
|
|
|
OrigPasswd=""
|
|
|
|
while [ -z "$OrigPasswd" ]
|
|
|
|
do
|
|
|
|
AskQuestion "Please enter current password for SYSDBA user: "
|
|
|
|
OrigPasswd=$Answer
|
|
|
|
if ! runSilent "$FBBin/gsec -user sysdba -password $OrigPasswd -di"
|
|
|
|
then
|
|
|
|
OrigPasswd=""
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Modify DBA password to value, asked from user.
|
|
|
|
# $1 may be set to original DBA password
|
|
|
|
# !! This routine is interactive !!
|
|
|
|
|
|
|
|
askUserForNewDBAPassword() {
|
|
|
|
|
|
|
|
if [ -z $1 ]
|
|
|
|
then
|
|
|
|
askForOrigDBAPassword
|
|
|
|
else
|
|
|
|
OrigPasswd=$1
|
|
|
|
fi
|
|
|
|
|
|
|
|
NewPasswd=""
|
|
|
|
while [ -z "$NewPasswd" ]
|
|
|
|
do
|
|
|
|
AskQuestion "Please enter new password for SYSDBA user: "
|
|
|
|
NewPasswd=$Answer
|
|
|
|
if [ ! -z "$NewPasswd" ]
|
|
|
|
then
|
|
|
|
if ! runSilent "$FBBin/gsec -user sysdba -password $OrigPasswd -modify sysdba -pw $NewPasswd"
|
|
|
|
then
|
|
|
|
NewPasswd=""
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# add a line in the (usually) /etc/services or /etc/inetd.conf file
|
|
|
|
# Here there are three cases, not found => add
|
|
|
|
# found & different => replace
|
|
|
|
# found & same => do nothing
|
|
|
|
#
|
|
|
|
|
|
|
|
replaceLineInFile() {
|
|
|
|
FileName="$1"
|
|
|
|
newLine="$2"
|
|
|
|
oldLine=`grep "$3" $FileName`
|
|
|
|
|
|
|
|
if [ -z "$oldLine" ]
|
|
|
|
then
|
|
|
|
echo "$newLine" >> "$FileName"
|
|
|
|
elif [ "$oldLine" != "$newLine" ]
|
|
|
|
then
|
|
|
|
MakeTemp
|
|
|
|
grep -v "$oldLine" "$FileName" > "$TmpFile"
|
|
|
|
echo "$newLine" >> $TmpFile
|
|
|
|
# The \n is needed, some /etc/services files are missing a trailing
|
|
|
|
# line feed - MOD 12-Dec-2003
|
|
|
|
echo "" >>$TmpFile
|
|
|
|
mv $TmpFile $FileName || rm -f $TmpFile
|
|
|
|
echo "Updated $1"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# "edit" file $1 - replace line starting from $2 with $3
|
|
|
|
# This should stop ed/ex/vim/"what else editor" battle.
|
|
|
|
# I hope awk is present in any posix system? AP.
|
|
|
|
|
|
|
|
editFile() {
|
|
|
|
FileName=$1
|
|
|
|
Starting=$2
|
|
|
|
NewLine=$3
|
|
|
|
|
|
|
|
AwkProgram="(\$1 == \"$Starting\") {\$0=\"$NewLine\"} {print \$0}"
|
|
|
|
MakeTemp
|
|
|
|
awk "$AwkProgram" <$FileName >$TmpFile && mv $TmpFile $FileName || rm -f $TmpFile
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Write new password to the @prefix@/SYSDBA.password file
|
|
|
|
|
|
|
|
writeNewPassword() {
|
|
|
|
NewPasswd=$1
|
|
|
|
DBAPasswordFile=$FBRootDir/SYSDBA.password
|
|
|
|
|
|
|
|
cat <<EOT >$DBAPasswordFile
|
|
|
|
# Firebird generated password for user SYSDBA is:
|
|
|
|
|
|
|
|
ISC_USER=sysdba
|
|
|
|
ISC_PASSWD=$NewPasswd
|
|
|
|
|
|
|
|
EOT
|
|
|
|
|
|
|
|
if [ $NewPasswd = "masterkey" ]
|
|
|
|
then
|
|
|
|
echo "# for install on `hostname` at time `date`" >> $DBAPasswordFile
|
|
|
|
echo "# You should change this password at the earliest oportunity" >> $DBAPasswordFile
|
|
|
|
else
|
|
|
|
echo "# generated on `hostname` at time `date`" >> $DBAPasswordFile
|
|
|
|
fi
|
|
|
|
|
|
|
|
cat <<EOT >>$DBAPasswordFile
|
|
|
|
|
|
|
|
# Your password can be changed to a more suitable one using the
|
|
|
|
# @prefix@/bin/changeDBAPassword.sh script
|
|
|
|
EOT
|
|
|
|
|
|
|
|
chmod u=r,go= $DBAPasswordFile
|
|
|
|
|
|
|
|
|
|
|
|
# Only if we have changed the password from the default do we need
|
|
|
|
# to update the entry in the database
|
|
|
|
|
|
|
|
if [ $NewPasswd != "masterkey" ]
|
|
|
|
then
|
|
|
|
runSilent "$FBBin/gsec -user sysdba -password masterkey -modify sysdba -pw $NewPasswd"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Generate new sysdba password - this routine is used only in the
|
|
|
|
# rpm file not in the install script.
|
|
|
|
|
|
|
|
generateNewDBAPassword() {
|
|
|
|
# openssl generates random data.
|
|
|
|
openssl </dev/null >/dev/null 2&>/dev/null
|
|
|
|
if [ $? -eq 0 ]
|
|
|
|
then
|
|
|
|
# We generate 20 random chars, strip any '/''s and get the first 8
|
|
|
|
NewPasswd=`openssl rand -base64 20 | tr -d '/' | cut -c1-8`
|
|
|
|
fi
|
|
|
|
|
|
|
|
# mkpasswd is a bit of a hassle, but check to see if it's there
|
|
|
|
if [ -z "$NewPasswd" ]
|
|
|
|
then
|
|
|
|
if [ -f /usr/bin/mkpasswd ]
|
|
|
|
then
|
|
|
|
NewPasswd=`/usr/bin/mkpasswd -l 8`
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# On some systems the mkpasswd program doesn't appear and on others
|
|
|
|
# there is another mkpasswd which does a different operation. So if
|
|
|
|
# the specific one isn't available then keep the original password.
|
|
|
|
if [ -z "$NewPasswd" ]
|
|
|
|
then
|
|
|
|
NewPasswd="masterkey"
|
|
|
|
fi
|
|
|
|
|
|
|
|
writeNewPassword $NewPasswd
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Change sysdba password.
|
|
|
|
|
|
|
|
changeDBAPassword() {
|
|
|
|
if [ -z "$InteractiveInstall" ]
|
|
|
|
then
|
|
|
|
generateNewDBAPassword
|
|
|
|
else
|
|
|
|
askUserForNewDBAPassword masterkey
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# UpdateHostsDotEquivFile
|
|
|
|
# The /etc/hosts.equiv file is needed to allow local access for super server
|
|
|
|
# from processes on the machine to port 3050 on the local machine.
|
|
|
|
# The two host names that are needed there are
|
|
|
|
# localhost.localdomain and whatever hostname returns.
|
|
|
|
|
2005-12-23 12:42:47 +01:00
|
|
|
# Automatically adding /etc/hosts.equiv file was security risk,
|
|
|
|
# therefore it was disabled. But in order to let anonymous
|
|
|
|
# services operate, we need /etc/gds_hosts.equiv instead.
|
|
|
|
# I hope nobody except firebird understands it.
|
2005-04-29 20:16:46 +02:00
|
|
|
|
|
|
|
updateHostsDotFile() {
|
2005-12-23 12:42:47 +01:00
|
|
|
hostEquivFile=/etc/gds_hosts.equiv
|
|
|
|
|
|
|
|
if [ ! -f $hostEquivFile ]
|
|
|
|
then
|
|
|
|
touch $hostEquivFile
|
|
|
|
chown root:root $hostEquivFile
|
|
|
|
chmod u=rw,go=r $hostEquivFile
|
|
|
|
fi
|
|
|
|
|
|
|
|
newLine="localhost"
|
|
|
|
replaceLineInFile "$hostEquivFile" "$newLine" "^$newLine\$"
|
|
|
|
|
|
|
|
newLine="localhost.localdomain"
|
|
|
|
replaceLineInFile "$hostEquivFile" "$newLine" "^$newLine\$"
|
|
|
|
|
|
|
|
newLine="`hostname`"
|
|
|
|
replaceLineInFile "$hostEquivFile" "$newLine" "^$newLine\$"
|
2005-04-29 20:16:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# buildUninstallFile
|
|
|
|
# This will work only for the .tar.gz install and it builds an
|
|
|
|
# uninstall shell script. The RPM system, if present, takes care of it's own.
|
|
|
|
|
|
|
|
buildUninstallFile() {
|
|
|
|
cd "$origDir"
|
|
|
|
|
|
|
|
if [ ! -f manifest.txt ] # Only exists if we are a .tar.gz install
|
|
|
|
then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
cp manifest.txt $FBRootDir/misc
|
|
|
|
|
|
|
|
cp -r scripts $FBRootDir/misc/
|
|
|
|
cp scripts/tarMainUninstall.sh $FBRootDir/bin/uninstall.sh
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Remove if only a link
|
|
|
|
|
|
|
|
removeIfOnlyAlink() {
|
|
|
|
Target=$1
|
|
|
|
|
|
|
|
if [ -L $Target ]
|
|
|
|
then
|
|
|
|
rm -f $Target
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2005-08-19 02:53:24 +02:00
|
|
|
|
2005-04-29 20:16:46 +02:00
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# re-link new file only if target is a link or missing
|
|
|
|
|
|
|
|
safeLink() {
|
|
|
|
Source=$1
|
|
|
|
Target=$2
|
|
|
|
|
|
|
|
removeIfOnlyAlink $Target
|
|
|
|
if [ ! -e $Target ]
|
|
|
|
then
|
|
|
|
ln -s $Source $Target
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# createLinksForBackCompatibility
|
|
|
|
# Create links for back compatibility to InterBase and Firebird1.0
|
|
|
|
# linked systems.
|
|
|
|
|
|
|
|
createLinksForBackCompatibility() {
|
|
|
|
|
|
|
|
# These two links are required for compatibility with existing ib programs
|
|
|
|
# If the program had been linked with libgds.so then this link is required
|
|
|
|
# to ensure it loads the fb equivalent. Eventually these should be
|
|
|
|
# optional and in a seperate rpm install. MOD 7-Nov-2002.
|
|
|
|
|
2005-08-16 12:04:13 +02:00
|
|
|
if [ "$1" ]
|
|
|
|
then
|
|
|
|
# Use library name from parameter
|
|
|
|
newLibrary=$FBRootDir/lib/$1
|
|
|
|
else
|
|
|
|
# Use DefaultLibrary, set by appropriate install library
|
|
|
|
newLibrary=$FBRootDir/lib/$DefaultLibrary.so
|
|
|
|
fi
|
2005-04-29 20:16:46 +02:00
|
|
|
|
|
|
|
safeLink $newLibrary @libdir@/libgds.so
|
|
|
|
safeLink $newLibrary @libdir@/libgds.so.0
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# removeLinksForBackCompatibility
|
|
|
|
# Remove links for back compatibility to InterBase and Firebird1.0
|
|
|
|
# linked systems.
|
|
|
|
|
|
|
|
removeLinksForBackCompatibility() {
|
|
|
|
removeIfOnlyAlink @libdir@/libgds.so
|
|
|
|
removeIfOnlyAlink @libdir@/libgds.so.0
|
|
|
|
}
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# 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
|
2006-04-16 14:58:29 +02:00
|
|
|
chown $RunUser:$RunUser $FileName
|
2005-04-29 20:16:46 +02:00
|
|
|
chmod 0644 $FileName
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Run process and check status
|
|
|
|
|
|
|
|
runAndCheckExit() {
|
|
|
|
Cmd=$*
|
|
|
|
|
|
|
|
$Cmd
|
|
|
|
ExitCode=$?
|
|
|
|
|
|
|
|
if [ $ExitCode -ne 0 ]
|
|
|
|
then
|
|
|
|
echo "Install aborted: The command $Cmd "
|
|
|
|
echo " failed with error code $ExitCode"
|
|
|
|
exit $ExitCode
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Display message if this is being run interactively.
|
|
|
|
|
|
|
|
displayMessage() {
|
|
|
|
msgText=$1
|
|
|
|
|
|
|
|
if [ ! -z "$InteractiveInstall" ]
|
|
|
|
then
|
|
|
|
echo $msgText
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Archive any existing prior installed files.
|
|
|
|
# The 'cd' stuff is to avoid the "leading '/' removed message from tar.
|
|
|
|
# for the same reason the DestFile is specified without the leading "/"
|
|
|
|
|
|
|
|
archivePriorInstallSystemFiles() {
|
|
|
|
if [ -z ${ArchiveMainFile} ]
|
|
|
|
then
|
|
|
|
echo "Variable ArchiveMainFile not set - exiting"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
oldPWD=`pwd`
|
|
|
|
archiveFileList=""
|
|
|
|
|
|
|
|
cd /
|
|
|
|
|
|
|
|
DestFile=${FBRootDir#/} # strip off leading /
|
|
|
|
if [ -e "$DestFile" ]
|
|
|
|
then
|
|
|
|
echo ""
|
|
|
|
echo ""
|
|
|
|
echo ""
|
|
|
|
echo "--- Warning ----------------------------------------------"
|
|
|
|
echo " The installation target directory: $FBRootDir"
|
|
|
|
echo " Already contains a prior installation of InterBase/Firebird."
|
|
|
|
echo " This and files found in /usr/include and @libdir@ will be"
|
|
|
|
echo " archived in the file : ${ArchiveMainFile}"
|
|
|
|
echo ""
|
|
|
|
|
|
|
|
if [ ! -z "$InteractiveInstall" ]
|
|
|
|
then
|
|
|
|
AskQuestion "Press return to continue or ^C to abort"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -e $DestFile ]
|
|
|
|
then
|
|
|
|
archiveFileList="$archiveFileList $DestFile"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
for i in ibase.h ib_util.h
|
|
|
|
do
|
|
|
|
DestFile=usr/include/$i
|
|
|
|
if [ -e $DestFile ]
|
|
|
|
then
|
|
|
|
archiveFileList="$archiveFileList $DestFile"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2005-08-16 12:04:13 +02:00
|
|
|
for i in libib_util.so libfbclient.so*
|
|
|
|
do
|
|
|
|
for DestFile in usr/lib/$i
|
|
|
|
do
|
|
|
|
if [ -e $DestFile ]
|
|
|
|
then
|
|
|
|
archiveFileList="$archiveFileList $DestFile"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
# for i in `cat manifest.txt`
|
|
|
|
# do
|
|
|
|
# if [ ! -d /$i ] # Ignore directories
|
|
|
|
# then
|
|
|
|
# if [ -e /$i ]
|
|
|
|
# then
|
|
|
|
# archiveFileList="$archiveFileList $i"
|
|
|
|
# fi
|
|
|
|
# fi
|
|
|
|
# done
|
|
|
|
|
|
|
|
for i in usr/sbin/rcfirebird etc/init.d/firebird etc/rc.d/init.d/firebird
|
2005-04-29 20:16:46 +02:00
|
|
|
do
|
2005-08-16 12:04:13 +02:00
|
|
|
DestFile=./$i
|
|
|
|
if [ -e /$DestFile ]
|
2005-04-29 20:16:46 +02:00
|
|
|
then
|
|
|
|
archiveFileList="$archiveFileList $DestFile"
|
|
|
|
fi
|
|
|
|
done
|
2005-08-16 12:04:13 +02:00
|
|
|
|
2005-04-29 20:16:46 +02:00
|
|
|
if [ ! -z "$archiveFileList" ]
|
|
|
|
then
|
|
|
|
displayMessage "Archiving..."
|
|
|
|
runAndCheckExit "tar -czf $ArchiveMainFile $archiveFileList"
|
|
|
|
displayMessage "Done."
|
|
|
|
|
|
|
|
displayMessage "Deleting..."
|
|
|
|
for i in $archiveFileList
|
|
|
|
do
|
|
|
|
rm -rf $i
|
|
|
|
done
|
|
|
|
displayMessage "Done."
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd $oldPWD
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# remove line from config file if it exists in it.
|
|
|
|
|
|
|
|
removeLineFromFile() {
|
|
|
|
FileName=$1
|
|
|
|
oldLine=$2
|
|
|
|
|
|
|
|
if [ ! -z "$oldLine" ]
|
|
|
|
then
|
|
|
|
cat $FileName | grep -v "$oldLine" > ${FileName}.tmp
|
|
|
|
mv ${FileName}.tmp $FileName
|
|
|
|
echo "Updated."
|
|
|
|
fi
|
|
|
|
}
|
2005-08-16 12:04:13 +02:00
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# removeInstalledFiles
|
|
|
|
#
|
|
|
|
removeInstalledFiles() {
|
|
|
|
|
|
|
|
manifestFile=$FBRootDir/misc/manifest.txt
|
|
|
|
|
|
|
|
if [ ! -f $manifestFile ]
|
|
|
|
then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
origDir=`pwd`
|
|
|
|
|
|
|
|
cd /
|
|
|
|
|
|
|
|
for i in `cat $manifestFile`
|
|
|
|
do
|
|
|
|
if [ -f $i -o -L $i ]
|
|
|
|
then
|
|
|
|
rm -f $i
|
|
|
|
#echo $i
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
cd "$origDir"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# removeUninstallFiles
|
|
|
|
# Under the install directory remove all the empty directories
|
|
|
|
# If some files remain then
|
|
|
|
|
|
|
|
removeUninstallFiles() {
|
|
|
|
# remove the uninstall scripts files.
|
|
|
|
#echo $FBRootDir/misc/scripts
|
|
|
|
rm -rf $FBRootDir/misc/scripts
|
|
|
|
rm -f $FBRootDir/misc/manifest.txt
|
|
|
|
rm -f $FBRootDir/bin/uninstall.sh
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# removeEmptyDirs
|
|
|
|
# Under the install directory remove all the empty directories
|
|
|
|
# If some files remain then
|
2005-08-19 02:53:24 +02:00
|
|
|
# This routine loops, since deleting a directory possibly makes
|
2005-08-16 12:04:13 +02:00
|
|
|
# the parent empty as well
|
|
|
|
|
|
|
|
removeEmptyDirs() {
|
|
|
|
|
|
|
|
dirContentChanged='yes'
|
|
|
|
while [ ! -z $dirContentChanged ]
|
|
|
|
do
|
|
|
|
dirContentChanged=''
|
|
|
|
for i in `find $FBRootDir -empty -type d -print`
|
|
|
|
do
|
|
|
|
rmdir $i
|
|
|
|
dirContentChanged=$i
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ ! -d $FBRootDir ] # end loop if the FBRootDir was deleted.
|
|
|
|
then
|
|
|
|
dirContentChanged=''
|
|
|
|
fi
|
|
|
|
|
|
|
|
done
|
|
|
|
}
|