No more default password here.
authorGreg Sabino Mullane <greg@endpoint.com>
Fri, 2 Sep 2011 20:16:28 +0000 (16:16 -0400)
committerGreg Sabino Mullane <greg@endpoint.com>
Fri, 2 Sep 2011 20:16:28 +0000 (16:16 -0400)
bucardo

diff --git a/bucardo b/bucardo
index 678d30118e206f972c2366f93ada456d557d74a8..6f6863c8361af93941d8832bebcc48166aca8d5c 100755 (executable)
--- a/bucardo
+++ b/bucardo
@@ -8103,8 +8103,7 @@ sub install {
     my $BDSN  = 'dbi:Pg:dbname=bucardo';
     $host and $host ne '<none>' and $BDSN .= ";host=$host";
     $port and $BDSN .= ";port=$port";
-    my $default_bucardo_password = 'goat';
-    $dbh = DBI->connect($BDSN, 'bucardo', $default_bucardo_password, {AutoCommit=>0,RaiseError=>1,PrintError=>0});
+    $dbh = DBI->connect($BDSN, 'bucardo', '', {AutoCommit=>0,RaiseError=>1,PrintError=>0});
     $dbh->do('SET search_path = bucardo');
 
     $SQL = 'UPDATE bucardo.bucardo_config SET value = ? WHERE setting = ?';