Index: /trunk/Nebulous-Server/Changes
===================================================================
--- /trunk/Nebulous-Server/Changes	(revision 20056)
+++ /trunk/Nebulous-Server/Changes	(revision 20057)
@@ -27,7 +27,6 @@
     - change neb-admin to properly cleanup it's semaphore file
     - retry system call failures
-    - change Nebulous::Server->new() to not setup the db handle on object
-      construction, modify Nebulous::Server->db() to be considtent with this
-      change
+    - change Nebulous::Server->new() to call ->db() instead of setting up the
+      DBH itself; cleanup Nebulous::Server->db()
 
 0.15 Thu Sep 11 13:00:59 HST 2008
Index: /trunk/Nebulous-Server/lib/Nebulous/Server.pm
===================================================================
--- /trunk/Nebulous-Server/lib/Nebulous/Server.pm	(revision 20056)
+++ /trunk/Nebulous-Server/lib/Nebulous/Server.pm	(revision 20057)
@@ -1,5 +1,5 @@
 # Copyright (c) 2004-2008  Joshua Hoblitt
 #
-# $Id: Server.pm,v 1.90 2008-10-11 01:16:50 jhoblitt Exp $
+# $Id: Server.pm,v 1.91 2008-10-11 01:24:21 jhoblitt Exp $
 
 package Nebulous::Server;
@@ -50,4 +50,7 @@
     $self->config($config);
 
+    # ask for the db handle as a means of validating the database parameters
+    $self->db;
+
     $log->debug( "leaving" );
     
