This is the mail archive of the cluster-cvs@sourceware.org mailing list for the cluster.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Cluster Project branch, STABLE2, updated. cluster-2.03.02-4-g557412e


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cluster Project".

http://sources.redhat.com/git/gitweb.cgi?p=cluster.git;a=commitdiff;h=557412e9fbe9e69cf371e16514f415389e7e5231

The branch, STABLE2 has been updated
       via  557412e9fbe9e69cf371e16514f415389e7e5231 (commit)
      from  d1e87179a96c22fc8716e098cfe43cc652c3b50a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 557412e9fbe9e69cf371e16514f415389e7e5231
Author: Marc - A. Dahlhaus <mad@wol.de>
Date:   Thu May 8 07:23:21 2008 +0200

    [MISC] Add version string to -V options of dlm_tool and group deamons
    
    Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>

-----------------------------------------------------------------------

Summary of changes:
 dlm/tool/main.c           |    4 ++--
 group/daemon/main.c       |    3 ++-
 group/dlm_controld/main.c |    3 ++-
 group/gfs_controld/main.c |    3 ++-
 group/tool/main.c         |    4 ++--
 5 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/dlm/tool/main.c b/dlm/tool/main.c
index 814a3bb..2871674 100644
--- a/dlm/tool/main.c
+++ b/dlm/tool/main.c
@@ -99,8 +99,8 @@ static void decode_arguments(int argc, char **argv)
 			break;
 
 		case 'V':
-			printf("%s (built %s %s)\n",
-				prog_name, __DATE__, __TIME__);
+			printf("%s %s (built %s %s)\n",
+				prog_name, RELEASE_VERSION, __DATE__, __TIME__);
 			/* printf("%s\n", REDHAT_COPYRIGHT); */
 			exit(EXIT_SUCCESS);
 			break;
diff --git a/group/daemon/main.c b/group/daemon/main.c
index af7d5bd..7c60073 100644
--- a/group/daemon/main.c
+++ b/group/daemon/main.c
@@ -884,7 +884,8 @@ static void decode_arguments(int argc, char **argv)
 			break;
 
 		case 'V':
-			printf("groupd (built %s %s)\n", __DATE__, __TIME__);
+			printf("groupd %s (built %s %s)\n",
+				RELEASE_VERSION, __DATE__, __TIME__);
 			/* printf("%s\n", REDHAT_COPYRIGHT); */
 			exit(EXIT_SUCCESS);
 			break;
diff --git a/group/dlm_controld/main.c b/group/dlm_controld/main.c
index 98585fc..0ef731c 100644
--- a/group/dlm_controld/main.c
+++ b/group/dlm_controld/main.c
@@ -784,7 +784,8 @@ static void decode_arguments(int argc, char **argv)
 			break;
 
 		case 'V':
-			printf("dlm_controld (built %s %s)\n", __DATE__, __TIME__);
+			printf("dlm_controld %s (built %s %s)\n",
+				RELEASE_VERSION, __DATE__, __TIME__);
 			/* printf("%s\n", REDHAT_COPYRIGHT); */
 			exit(EXIT_SUCCESS);
 			break;
diff --git a/group/gfs_controld/main.c b/group/gfs_controld/main.c
index b2edc32..42b365f 100644
--- a/group/gfs_controld/main.c
+++ b/group/gfs_controld/main.c
@@ -886,7 +886,8 @@ static void decode_arguments(int argc, char **argv)
 			break;
 
 		case 'V':
-			printf("gfs_controld (built %s %s)\n", __DATE__, __TIME__);
+			printf("gfs_controld %s (built %s %s)\n",
+				RELEASE_VERSION, __DATE__, __TIME__);
 			/* printf("%s\n", REDHAT_COPYRIGHT); */
 			exit(EXIT_SUCCESS);
 			break;
diff --git a/group/tool/main.c b/group/tool/main.c
index f1915ad..d15f14f 100644
--- a/group/tool/main.c
+++ b/group/tool/main.c
@@ -132,8 +132,8 @@ static void decode_arguments(int argc, char **argv)
 			break;
 
 		case 'V':
-			printf("%s (built %s %s)\n",
-				prog_name, __DATE__, __TIME__);
+			printf("%s %s (built %s %s)\n",
+				prog_name, RELEASE_VERSION, __DATE__, __TIME__);
 			/* printf("%s\n", REDHAT_COPYRIGHT); */
 			exit(EXIT_SUCCESS);
 			break;


hooks/post-receive
--
Cluster Project


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]