[Pkg-nagios-changes] [SCM] Debian packaging for mod gearman. branch, master, updated. f5edd3e88aa2138dcf6d044c835fbd0ada944168

Sven Nierlein sven at nierlein.de
Fri Feb 11 11:18:42 UTC 2011


The following commit has been merged in the master branch:
commit df486270d0fcf493a28d817eae861a1cfbdae30d
Author: Sven Nierlein <sven at nierlein.de>
Date:   Wed Feb 2 12:33:05 2011 +0100

    updated version and docs

diff --git a/Changes b/Changes
index c7dd53b..8af9d61 100644
--- a/Changes
+++ b/Changes
@@ -1,13 +1,14 @@
 This file documents the revision history for mod_gearman.
 
 1.0    Sun...
+          - added dup_server option (Mark Clarkson)
           - added stderr to send_multi
           - added missing performance data to send_multi
           - added error message when using unknown option
           - fixed handling of unusual exit codes
 
 0.9    Sun Jan 16 21:20:06 CET 2011
-          - prepared debian packaging (thanks Stig Sandbeck Mathisen)
+          - prepared debian packaging (Stig Sandbeck Mathisen)
           - increased max output to 64k
           - fixed default paths in gearmand init script
           - fixed problem with too low number of workers after running for a while
diff --git a/Makefile.am b/Makefile.am
index 1647366..b37dab9 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -201,7 +201,11 @@ test: check
 	@echo "################################################################"
 
 docs:
-	doxygen Doxyfile
+	@if [ `type doxygen > /dev/null 2>&1` ]; then \
+	    doxygen Doxyfile; \
+	else \
+	    printf "\n\n**** please install doxygen to generate doxygen docs ****\n\n"; \
+	fi;
 	$(RM) docs/images
 	cd docs && ln -s /usr/share/asciidoc/images .
 	cp -p README docs/ && cd docs && asciidoc --unsafe -a toc -a toclevels=2 -a icons -a data-uri -a max-width=800 README
diff --git a/README b/README
index 936586e..4671198 100644
--- a/README
+++ b/README
@@ -186,8 +186,9 @@ debug:              use debug to increase the verbosity of the module.
                     Example: debug=1
 
 
-server:             sets the addess of your gearman job server. Can be specified
-                    more than once to add more server.
+server:             sets the address of your gearman job server. Can be specified
+                    more than once to add more server. Gearman uses
+                    the first one available.
 
                     Example: server=localhost:4730,remote_host:4730
 
@@ -346,6 +347,16 @@ max-jobs:           Controls the amount of jobs a worker will do
                     Default: 1000
 
                     Example: max-jobs=500
+
+dup_server:         sets the address of gearman job server where
+                    duplicated result will be sent to. Can be specified
+                    more than once to add more server.
+                    Useful for duplicating results for a reporting
+                    installation or remote gui.
+
+                    Example: dup_server=logserver:4730,logserver2:4730
+
+
 .......
 
 
diff --git a/configure.ac b/configure.ac
index 4f3ec12..3b2eb56 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@
 
 ##############################################
 AC_PREREQ([2.59])
-AC_INIT([mod_gearman], [1.0b1], [sven.nierlein at consol.de])
+AC_INIT([mod_gearman], [1.0b2], [sven.nierlein at consol.de])
 AM_INIT_AUTOMAKE([-Wall foreign subdir-objects])
 AC_CONFIG_SRCDIR([neb_module/mod_gearman.c],[worker/worker.c],[tools/send_gearman.c],[tools/check_gearman.c],[tools/gearman_top.c])
 AC_CONFIG_HEADER([config.h])
diff --git a/docs/README.html b/docs/README.html
index aba371a..2c38f4e 100644
--- a/docs/README.html
+++ b/docs/README.html
@@ -1128,8 +1128,9 @@ debug:              use debug to increase the verbosity of the module.
                     Example: debug=1
 
 
-server:             sets the addess of your gearman job server. Can be specified
-                    more than once to add more server.
+server:             sets the address of your gearman job server. Can be specified
+                    more than once to add more server. Gearman uses
+                    the first one available.
 
                     Example: server=localhost:4730,remote_host:4730
 
@@ -1283,7 +1284,15 @@ max-jobs:           Controls the amount of jobs a worker will do
                     times. Disabled when set to 0.
                     Default: 1000
 
-                    Example: max-jobs=500</tt></pre>
+                    Example: max-jobs=500
+
+dup_server:         sets the address of gearman job server where
+                    duplicated result will be sent to. Can be specified
+                    more than once to add more server.
+                    Useful for duplicating results for a reporting
+                    installation or remote gui.
+
+                    Example: dup_server=logserver:4730,logserver2:4730</tt></pre>
 </div></div>
 </div>
 <h2 id="_queue_names">Queue Names</h2>
@@ -2185,7 +2194,7 @@ If you have some checks which should not run parallel, just setup a
 <div id="footnotes"><hr /></div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2011-01-16 17:32:23 CEST
+Last updated 2011-02-02 12:28:09 CEST
 </div>
 </div>
 </body>
diff --git a/include/common.h b/include/common.h
index 959012c..eaa1fdf 100644
--- a/include/common.h
+++ b/include/common.h
@@ -52,7 +52,7 @@
 #define MOD_GM_COMMON_H
 
 /* constants */
-#define GM_VERSION                 "1.0b1"
+#define GM_VERSION                 "1.0b2"
 #define GM_ENABLED                      1
 #define GM_DISABLED                     0
 #define GM_BUFFERSIZE               98304

-- 
Debian packaging for mod gearman.



More information about the Pkg-nagios-changes mailing list