Update of /cvsroot/firebird/interbase/builds/original
In directory usw-pr-cvs1:/tmp/cvs-serv28572/builds/original
Modified Files:
install.unix
Log Message:
Fix problem of Solaris inetd.conf sym link broken on superserver install.
Index: install.unix
===================================================================
RCS file: /cvsroot/firebird/interbase/builds/original/install.unix,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** install.unix 2000/12/14 20:07:46 1.2
--- install.unix 2001/01/07 17:17:44 1.3
***************
*** 176,182 ****
if [ -f /etc/inetd.conf ]; then
if [ "$SUPERSERVER" = "SUPERSERVER" ]; then
! # Remove gds_db service. We do not want gds_inet_server to be invoked
! cat /etc/inetd.conf | grep -v gds_db > inetd.conf
! mv inetd.conf /etc/inetd.conf
else
grep -s gds_db /etc/inetd.conf > /dev/null 2>&1
--- 176,186 ----
if [ -f /etc/inetd.conf ]; then
if [ "$SUPERSERVER" = "SUPERSERVER" ]; then
! # Remove gds_db service. We do not want gds_inet_server to be invoked
! cat /etc/inetd.conf | grep -v gds_db > inetd.conf
! if [ -f /etc/inet/inetd.conf ]; then
! mv inetd.conf /etc/inet/inetd.conf
! else
! mv inetd.conf /etc/inetd.conf
! fi
else
grep -s gds_db /etc/inetd.conf > /dev/null 2>&1
|