$::cgi entfernt.
[kivitendo-erp.git] / scripts / inst_postgres_deb.sh
index be644ba..b0cf9cf 100755 (executable)
@@ -10,6 +10,7 @@ source /usr/share/debconf/confmodule
 
 #Als root anmelden
 if [ `id -u` -gt 0 ]; then echo "Bitte als root anmelden"; exit 1; fi
+
 POSTGRESQL=`dpkg -l | grep -E "postgresql-[0-9]" | cut -d" " -f3 | sort -r | head -1 -`
 
 #Datei plpgsql.so suchen
@@ -53,7 +54,7 @@ fi
 v8=`su postgres -c "echo 'select version()' | psql template1 2>/dev/null | grep -E "[Ss][Qq][Ll][[:space:]]+8\.[2-9]\.[0-9]" | wc -l"`
 if [ $v8 -eq 0 ]; then 
     echo $FEHLER
-    echo Datenbank Version 8x konnte erreicht werden.
+    echo Datenbank Version 8x konnte nicht erreicht werden.
     exit 0
 fi
 
@@ -97,24 +98,24 @@ if [ $cnt -eq 0 ]; then
     cat $PGHBA.org >> $PGHBA
 fi 
 
-CONFDIR=`dirname $PGHBA`
+#CONFDIR=`dirname $PGHBA`
 
 #postgresql.conf anpassen, liegt vermutlich im gleichen Verzeichnis wie pg_hba.conf
-if ! [ -f $CONFDIR/postgresql.conf ]; then
-    echo $FEHLER
-    echo 'postgresql.conf' nicht gefunden.
-    echo PostgreSQL selber konfigurieren
-    ERRCNT=1
-fi
-
-mv $CONFDIR/postgresql.conf $CONFDIR/postgresql.conf.org
+#if ! [ -f $CONFDIR/postgresql.conf ]; then
+#    echo $FEHLER
+#    echo 'postgresql.conf' nicht gefunden.
+#    echo PostgreSQL selber konfigurieren
+#    ERRCNT=1
+#fi
+
+#mv $CONFDIR/postgresql.conf $CONFDIR/postgresql.conf.org
 #Bei der V8.x OID einschalten.
-sed 's/^.*default_with_oids.*/default_with_oids = true/i' $CONFDIR/postgresql.conf.org > $CONFDIR/postgresql.conf
-cnt=`grep default_with_oids $CONFDIR/postgresql.conf | wc -l`
-if [ $cnt -eq 0 ]; then
-       cp $CONFDIR/postgresql.conf.org $CONFDIR/postgresql.conf
-       echo "default_with_oids = true" >> $CONFDIR/postgresql.conf
-fi
+#sed 's/^.*default_with_oids.*/default_with_oids = true/i' $CONFDIR/postgresql.conf.org > $CONFDIR/postgresql.conf
+#cnt=`grep default_with_oids $CONFDIR/postgresql.conf | wc -l`
+#if [ $cnt -eq 0 ]; then
+#      cp $CONFDIR/postgresql.conf.org $CONFDIR/postgresql.conf
+#      echo "default_with_oids = true" >> $CONFDIR/postgresql.conf
+#fi
 
  
 PGSQL=`ls -r1 /etc/init.d/postgres*  | head -1 -`