CVS User Account cvsuser
Wed Aug 25 18:07:55 PDT 2004
Log Message:
-----------
MFH 8.0 support as well as spelling error fixes

Tags:
----
REL_1_0_STABLE

Modified Files:
--------------
    slony1-engine/tools:
        slony_setup.pl (r1.11.2.1 -> r1.11.2.2)

-------------- next part --------------
Index: slony_setup.pl
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/tools/slony_setup.pl,v
retrieving revision 1.11.2.1
retrieving revision 1.11.2.2
diff -Ltools/slony_setup.pl -Ltools/slony_setup.pl -u -w -r1.11.2.1 -r1.11.2.2
--- tools/slony_setup.pl
+++ tools/slony_setup.pl
@@ -367,7 +367,7 @@
         print "\n\n$which connection successful\n";
 	if (check_version(which => $which))
         {
-          print "You need to upgrage PostgreSQL on $data{$which}{'hostname'}";
+          print "You need to upgrade PostgreSQL on $data{$which}{'hostname'}";
 	  clean_up();
         }
         get_databases(which => $which);
@@ -941,7 +941,9 @@
 	}
     }
     close P;
-    if ($major >= 7 && $minor >= 3) {
+    if ($major == 7 && $minor >= 3) {
+	return 0;
+    } elsif ($major == 8) {
 	return 0;
     } else {
 	return 1;


More information about the Slony1-commit mailing list