cluster-devel.redhat.com archive mirror
 help / color / mirror / Atom feed
* [Cluster-devel] cluster/ccs/ccs_tool ccs_tool.c
@ 2006-09-19 13:17 jbrassow
  0 siblings, 0 replies; 4+ messages in thread
From: jbrassow @ 2006-09-19 13:17 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	jbrassow at sourceware.org	2006-09-19 13:17:04

Modified files:
	ccs/ccs_tool   : ccs_tool.c 

Log message:
	lsnodes -> lsnode typo.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/ccs/ccs_tool/ccs_tool.c.diff?cvsroot=cluster&r1=1.4&r2=1.5

--- cluster/ccs/ccs_tool/ccs_tool.c	2006/04/13 13:24:27	1.4
+++ cluster/ccs/ccs_tool/ccs_tool.c	2006/09/19 13:17:04	1.5
@@ -115,7 +115,7 @@
 	  "  upgrade <location>  Upgrade old CCS format to new xml format.\n"
 	  "  addnode <node>      Add a node\n"
           "  delnode <node>      Delete a node\n"
-          "  lsnodes             List nodes\n"
+          "  lsnode              List nodes\n"
           "  lsfence             List fence devices\n"
 	  "  addfence <fencedev> Add a new fence device\n"
 	  "  delfence <fencedev> Delete a fence device\n"



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Cluster-devel] cluster/ccs/ccs_tool ccs_tool.c
@ 2007-08-30 16:25 rohara
  0 siblings, 0 replies; 4+ messages in thread
From: rohara @ 2007-08-30 16:25 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	rohara at sourceware.org	2007-08-30 16:25:50

Modified files:
	ccs/ccs_tool   : ccs_tool.c 

Log message:
	BZ 249781 - Fix ccs_tool to return EXIT_SUCCESS for most commands.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/ccs/ccs_tool/ccs_tool.c.diff?cvsroot=cluster&r1=1.7&r2=1.8

--- cluster/ccs/ccs_tool/ccs_tool.c	2007/08/22 08:58:36	1.7
+++ cluster/ccs/ccs_tool/ccs_tool.c	2007/08/30 16:25:50	1.8
@@ -62,35 +62,35 @@
 
     else if(!strcmp(argv[optind], "addnode")){
 	    add_node(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "delnode")){
 	    del_node(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "addfence")){
 	    add_fence(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "delfence")){
 	    del_fence(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "lsnode")){
 	    list_nodes(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "lsfence")){
 	    list_fences(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "create")){
 	    create_skeleton(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "addnodeids")){
 	    add_nodeids(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
 
     else {



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Cluster-devel] cluster/ccs/ccs_tool ccs_tool.c
@ 2007-08-30 16:26 rohara
  0 siblings, 0 replies; 4+ messages in thread
From: rohara @ 2007-08-30 16:26 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Branch: 	RHEL5
Changes by:	rohara at sourceware.org	2007-08-30 16:26:42

Modified files:
	ccs/ccs_tool   : ccs_tool.c 

Log message:
	BZ 249781 - Fix ccs_tool to return EXIT_SUCCESS for most commands.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/ccs/ccs_tool/ccs_tool.c.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.5&r2=1.5.2.1

--- cluster/ccs/ccs_tool/ccs_tool.c	2006/09/19 13:17:04	1.5
+++ cluster/ccs/ccs_tool/ccs_tool.c	2007/08/30 16:26:42	1.5.2.1
@@ -56,35 +56,35 @@
 
     else if(!strcmp(argv[optind], "addnode")){
 	    add_node(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "delnode")){
 	    del_node(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "addfence")){
 	    add_fence(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "delfence")){
 	    del_fence(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "lsnode")){
 	    list_nodes(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "lsfence")){
 	    list_fences(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "create")){
 	    create_skeleton(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "addnodeids")){
 	    add_nodeids(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
 
     else {



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Cluster-devel] cluster/ccs/ccs_tool ccs_tool.c
@ 2007-11-02 21:08 rohara
  0 siblings, 0 replies; 4+ messages in thread
From: rohara @ 2007-11-02 21:08 UTC (permalink / raw)
  To: cluster-devel.redhat.com

CVSROOT:	/cvs/cluster
Module name:	cluster
Branch: 	RHEL4
Changes by:	rohara at sourceware.org	2007-11-02 21:08:50

Modified files:
	ccs/ccs_tool   : ccs_tool.c 

Log message:
	BZ 364661 - Fix ccs_tool to return EXIT_SUCCESS for most commands.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/ccs/ccs_tool/ccs_tool.c.diff?cvsroot=cluster&only_with_tag=RHEL4&r1=1.1.2.3&r2=1.1.2.4

--- cluster/ccs/ccs_tool/ccs_tool.c	2007/02/14 10:15:46	1.1.2.3
+++ cluster/ccs/ccs_tool/ccs_tool.c	2007/11/02 21:08:50	1.1.2.4
@@ -56,35 +56,35 @@
 
     else if(!strcmp(argv[optind], "addnode")){
 	    add_node(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "delnode")){
 	    del_node(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "addfence")){
 	    add_fence(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "delfence")){
 	    del_fence(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "lsnode")){
 	    list_nodes(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "lsfence")){
 	    list_fences(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "create")){
 	    create_skeleton(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
     else if(!strcmp(argv[optind], "addnodeids")){
 	    add_nodeids(argc-1, argv+1);
-	    exit(EXIT_FAILURE);
+	    exit(EXIT_SUCCESS);
     }
 
     else {



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-11-02 21:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-30 16:26 [Cluster-devel] cluster/ccs/ccs_tool ccs_tool.c rohara
  -- strict thread matches above, loose matches on Subject: below --
2007-11-02 21:08 rohara
2007-08-30 16:25 rohara
2006-09-19 13:17 jbrassow

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 NNTP newsgroup(s).