CVS User Account cvsuser
Tue Nov 23 15:07:33 PST 2004
Log Message:
-----------
The "reset_cluster.pl" script is broken and should become unnecessary
in 1.1...

Removed Files:
-------------
    slony1-engine/tools/altperl:
        reset_cluster.pl

-------------- next part --------------
--- tools/altperl/reset_cluster.pl
+++ /dev/null
@@ -1,48 +0,0 @@
-#!perl # -*- perl -*-
-# $Id: reset_cluster.pl,v 1.4 2004/09/09 14:38:57 cbbrowne Exp $
-# Author: Christopher Browne
-# Copyright 2004 Afilias Canada
-
-require 'slon-tools.pm';
-require 'slon.env';
-
-open(SLONIK, ">/tmp/slonik.$$");
-
-print SLONIK genheader();
-
-my ($dbname, $dbhost)=($DBNAME[1], $HOST[1]);
-print SLONIK "
-try {
-";
-
-foreach my $node (@NODES) {
-    if ($node > 1) {
-	my ($dbname, $dbhost) = ($DBNAME[$node], $HOST[$node]);
-	print SLONIK "     store node (id = $node, comment = 'Node $dbname@$dbhost');\n";
-    }
-}
-
-foreach my $nodea (@NODES) {
-    my $dsna = $DSN[$nodea];
-    foreach my $nodeb (@NODES) {
-	if ($nodea != $nodeb) {
-	    my $dsnb = $DSN[$nodeb];
-	    print SLONIK "      store path (server = $nodea, client = $nodeb, conninfo = '$dsna');\n";
-	    print SLONIK "      store path (server = $nodeb, client = $nodea, conninfo = '$dsnb');\n";
-	    print SLONIK "      store listen (origin = $nodea, receiver = $nodeb);\n";
-	    print SLONIK "      store listen (origin = $nodeb, receiver = $nodea);\n";
-	}
-    }
-}
-
-print SLONIK qq[
-} on error {
-  echo 'Remapping of cluster failed...';
-  exit 1;
-}
-echo 'Replication nodes prepared';
-echo 'Please start a slon replication daemon for each node';
-];
-
-close SLONIK;
-run_slonik_script("/tmp/slonik.$$");


More information about the Slony1-commit mailing list