aboutsummaryrefslogtreecommitdiff
path: root/databases/firebird/files/patch-src::install::arch-specific::freebsd::install.sh.in
blob: 03df0f2e369cd11b806156dc1c6a9b12af1bcdb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
--- src/install/arch-specific/freebsd/install.sh.in.orig	Tue Apr 26 07:14:26 2005
+++ src/install/arch-specific/freebsd/install.sh.in	Tue Apr 26 07:15:05 2005
@@ -55,13 +55,6 @@
 InstallFirebirdPrefix=@prefix@
 InstallPrefix=${InstallFirebirdPrefix%/firebird}
 
-if [ -d $InstallFirebirdPrefix ]; then
-	if [ -d $InstallPrefix/firebird.old ]; then
-		rm -rf $InstallPrefix/firebird.old
-	fi
-	cp -Rp $InstallFirebirdPrefix $InstallPrefix/firebird.old
-fi
-
 if [ `id -u` -ne 0 ]; then
 	echo; echo "You must be root to run this step!"; echo; echo
 	exit 1
@@ -284,25 +277,6 @@
 [ -f aliases.conf ] || install -o $fbUID -g $fbGID -m 444 aliases.conf.sample aliases.conf
 [ -f firebird.conf ] || install -o $fbUID -g $fbGID -m 444 firebird.conf.sample firebird.conf
 [ -f security.fdb ] || install -o $fbUID -g $fbGID -m 660 security.fdb.sample security.fdb
-
-# remove any existing gds service
-cp /etc/services /etc/services.old
-cp /etc/inetd.conf /etc/inetd.conf.old
-cat /etc/services |grep -v gds_db >/etc/services.new
-cat /etc/inetd.conf |grep -v gds_db >/etc/inetd.conf.new
-mv /etc/services.new /etc/services
-mv /etc/inetd.conf.new /etc/inetd.conf
-
-# add the gds service and restart inetd
-cat >>/etc/services <<EOF
-gds_db		3050/tcp  #InterBase Database Remote Protocol
-EOF
-cat >>/etc/inetd.conf <<EOF
-gds_db	stream	tcp	nowait	firebird	$InstallFirebirdPrefix/bin/fb_inet_server  fb_inet_server
-EOF
-if [ -f /var/run/inetd.pid ]; then
-        kill -HUP `cat /var/run/inetd.pid`
-fi
 
 # shared lib startup script
 if [ -d $InstallPrefix/etc/rc.d ]; then