public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
* cluster: STABLE3 - fence_xvmd: Support FENCE_XVMD_DEBUG env. variable
@ 2009-03-31 15:50 Lon Hohberger
  0 siblings, 0 replies; only message in thread
From: Lon Hohberger @ 2009-03-31 15:50 UTC (permalink / raw)
  To: cluster-cvs-relay

Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=7d18d35f94112eecc40ad7ff760f1ba4b580dab6
Commit:        7d18d35f94112eecc40ad7ff760f1ba4b580dab6
Parent:        37a6d3de81f7fcfcf32d2d3f3bb3351360c61ea4
Author:        Lon Hohberger <lhh@redhat.com>
AuthorDate:    Mon Mar 30 16:36:43 2009 -0400
Committer:     Lon Hohberger <lhh@redhat.com>
CommitterDate: Tue Mar 31 11:29:05 2009 -0400

fence_xvmd: Support FENCE_XVMD_DEBUG env. variable

Signed-off-by: Lon Hohberger <lhh@redhat.com>
Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
---
 fence/agents/xvm/fence_xvmd.c |   18 +++++++++++++++---
 1 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/fence/agents/xvm/fence_xvmd.c b/fence/agents/xvm/fence_xvmd.c
index 4e427ad..8fd35cf 100644
--- a/fence/agents/xvm/fence_xvmd.c
+++ b/fence/agents/xvm/fence_xvmd.c
@@ -862,18 +862,30 @@ int
 main(int argc, char **argv)
 {
 	fence_xvm_args_t args;
-	int mc_sock;
 	char key[MAX_KEY_LEN];
-	int key_len = 0, x;
 	char *my_options = "dfi:a:p:I:C:U:c:k:u?hLXV";
-	cman_handle_t ch = NULL;
 	void *h = NULL;
+	char *dbgp = getenv("FENCE_XVMD_DEBUG");
+	cman_handle_t ch = NULL;
+	int key_len = 0, x, mc_sock;
 
 	/* Start w/ stderr output only */
 	conf_logging(0, LOG_MODE_OUTPUT_STDERR, SYSLOGFACILITY,
 		     SYSLOGLEVEL, SYSLOGLEVEL, NULL);
 
 	args_init(&args);
+
+	/* Grab debug level from our environment variable,
+	 * if specified.
+	 */
+	if (dbgp) {
+		x = atoi(dbgp);
+		if (x <= 0)
+			x = 1;	 /* Being set at all implies debug == 1 */
+
+		args.flags |= F_DEBUG;
+		args.debug = x;
+	}
 	args_get_getopt(argc, argv, my_options, &args);
 
 	if (args.flags & F_HELP) {


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-03-31 15:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-31 15:50 cluster: STABLE3 - fence_xvmd: Support FENCE_XVMD_DEBUG env. variable Lon Hohberger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).