[Cluster-devel] cluster/cmirror/src clogd.c

jbrassow at sourceware.org jbrassow at sourceware.org
Fri Dec 7 17:07:37 UTC 2007


CVSROOT:	/cvs/cluster
Module name:	cluster
Branch: 	RHEL5
Changes by:	jbrassow at sourceware.org	2007-12-07 17:07:36

Modified files:
	cmirror/src    : clogd.c 

Log message:
	- Bug 384811: RHEL5 cmirror tracker: unable to unload the cmirror kernel module using the init script
	
	daemon was not exiting... init script interpretted this as a problem and
	didn't attempt to rm the module.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cmirror/src/clogd.c.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.1.2.2&r2=1.1.2.3

--- cluster/cmirror/src/Attic/clogd.c	2007/11/03 18:37:48	1.1.2.2
+++ cluster/cmirror/src/Attic/clogd.c	2007/12/07 17:07:36	1.1.2.3
@@ -123,14 +123,16 @@
 		r += log_status();
 		break;
 	default:
-		r = 0;
-		break;
+		LOG_PRINT("Unknown signal received... ignoring");
+		return;
 	}
+
 	if (!r) {
 		LOG_PRINT("No current cluster logs... safe to exit.");
-	} else {
-		LOG_ERROR("Cluster logs exist.  Refusing to exit.");
+		exit(EXIT_SUCCESS);
 	}
+
+	LOG_ERROR("Cluster logs exist.  Refusing to exit.");
 }
 
 static void process_signals(void)




More information about the Cluster-devel mailing list