[Pkg-nagios-changes] [pkg-nagios] r846 - nagios/trunk/debian

Sean Finney seanius at costa.debian.org
Sat Feb 18 16:15:45 UTC 2006


Author: seanius
Date: 2006-02-18 16:15:44 +0000 (Sat, 18 Feb 2006)
New Revision: 846

Modified:
   nagios/trunk/debian/changelog
   nagios/trunk/debian/check_nagios_db
Log:
first svn version, and fix for check_nagios_db.


Modified: nagios/trunk/debian/changelog
===================================================================
--- nagios/trunk/debian/changelog	2006-02-18 14:58:32 UTC (rev 845)
+++ nagios/trunk/debian/changelog	2006-02-18 16:15:44 UTC (rev 846)
@@ -1,3 +1,14 @@
+nagios (2:1.3-cvs.20050402-13) unstable; urgency=low
+
+  [sean finney]
+  * nagios 1.x sources are now imported into the pkg-nagios 
+    subversion repository.
+  * fix for check_nagios_db that prevented it from working
+    on remote hosts.  thanks to Akira Yamanita for pointing
+    this out (closes: #352762).
+
+ -- sean finney <seanius at debian.org>  Sat, 18 Feb 2006 17:01:35 +0100
+
 nagios (2:1.3-cvs.20050402-12) unstable; urgency=low
 
   [sean finney]

Modified: nagios/trunk/debian/check_nagios_db
===================================================================
--- nagios/trunk/debian/check_nagios_db	2006-02-18 14:58:32 UTC (rev 845)
+++ nagios/trunk/debian/check_nagios_db	2006-02-18 16:15:44 UTC (rev 846)
@@ -61,8 +61,8 @@
 close(F);
 
 my $dsn = "DBI:$driver:dbname=$dbname";
-if(defined($dbhost)) { $dsn .= "host=$dbhost"; } else { $dbhost=""; }
-if(defined($dbport)) { $dsn .= "port=$dbport"; } else { $dbport=""; }
+if(defined($dbhost)) { $dsn .= ";host=$dbhost"; } else { $dbhost=""; }
+if(defined($dbport)) { $dsn .= ";port=$dbport"; } else { $dbport=""; }
 if(!defined($dbuser)) { $dbuser=""; }
 if(!defined($dbpass)) { $dbpass=""; }
 




More information about the Pkg-nagios-changes mailing list