From 091af02793a5c8deeee56224dc05702db3529cf0 Mon Sep 17 00:00:00 2001 From: Alberto Di Meglio Date: Wed, 20 Apr 2005 12:43:51 +0000 Subject: [PATCH] Modified some parameters defaults Added module.version param --- .../config/scripts/glite-lb-config.py | 5 +- .../config/templates/glite-lb.cfg.xml | 92 ++++++++++------------ org.glite.deployment.lb/project/version.properties | 2 +- 3 files changed, 45 insertions(+), 54 deletions(-) diff --git a/org.glite.deployment.lb/config/scripts/glite-lb-config.py b/org.glite.deployment.lb/config/scripts/glite-lb-config.py index dc63571..5abc998 100644 --- a/org.glite.deployment.lb/config/scripts/glite-lb-config.py +++ b/org.glite.deployment.lb/config/scripts/glite-lb-config.py @@ -6,7 +6,7 @@ # For license conditions see the license file or http://eu-egee.org/license.html # ################################################################################ -# glite-lb-config v. 1.2.2 +# glite-lb-config v. 1.2.3 # # Post-installation script for configuring the gLite Logging and Bookkeping Server # Robert Harakaly < robert.harakaly@cern.ch > @@ -42,9 +42,10 @@ class glite_lb: def __init__(self): self.mysql = MySQL.Mysql() self.verbose = 0 - self.version = "1.2.2" + self.version = "1.2.3" self.name = "glite-lb" self.friendly_name = "gLite Logging and Bookkeeping" + params['module.version'] = self.version #------------------------------------------------------------------------------- # Banner diff --git a/org.glite.deployment.lb/config/templates/glite-lb.cfg.xml b/org.glite.deployment.lb/config/templates/glite-lb.cfg.xml index 747a6b4..ed39d97 100644 --- a/org.glite.deployment.lb/config/templates/glite-lb.cfg.xml +++ b/org.glite.deployment.lb/config/templates/glite-lb.cfg.xml @@ -67,75 +67,65 @@ value="true"/> + description="Name of the service. This should be globally unique. + Example: your.host.name_Logging_Bookkeeping_Server + [Type: 'String']" + value="${HOSTNAME}_Logging_Bookkeeping_Server"/> + description="URL to contact the service at. + This should be unique for each service. Use example and adapt host. + Example: http://your.host.name/LB/LBServer + [Type: 'string']" + value="http://${HOSTNAME}/LB/LBServer"/> + description="Service version in the form 'major.minor.patch' + Example: 1.2.3 + [Type: 'string']" + value="${module.version}"/> + description="How often to check and publish service information. + Example: 3600 [Type: 'string'] [Unit: 'seconds']" + value="3600"/> + description="How often to check and publish service status. + Example: 60 [Type: 'string'] [Unit: 'seconds']" + value="60"/> + description="URL of a WSDL document for the service (leave blank if the + service has no WSDL). + Example: http://example.rl.ac.uk/service?WSDL + [Type: 'string']" + value="n/a"/> diff --git a/org.glite.deployment.lb/project/version.properties b/org.glite.deployment.lb/project/version.properties index 4e52c78..0fdc5e4 100644 --- a/org.glite.deployment.lb/project/version.properties +++ b/org.glite.deployment.lb/project/version.properties @@ -1,4 +1,4 @@ -module.version = 1.2.2 +module.version = 1.2.3 module.age = 1 \ No newline at end of file -- 1.8.2.3