You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by ra...@apache.org on 2015/08/30 20:17:42 UTC

[49/50] [abbrv] stratos git commit: Merging with stratos-4.1.x branch: contains fixes done for 4.1.2-rc1 release

Merging with stratos-4.1.x branch: contains fixes done for 4.1.2-rc1 release


Project: http://git-wip-us.apache.org/repos/asf/stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/9b1d2720
Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/9b1d2720
Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/9b1d2720

Branch: refs/heads/master
Commit: 9b1d272074ece69a35cc3f90933b2e145c1dc4ec
Parents: 52f6245
Author: Akila Perera <ra...@gmail.com>
Authored: Sun Aug 30 23:31:17 2015 +0530
Committer: Akila Perera <ra...@gmail.com>
Committed: Sun Aug 30 23:31:17 2015 +0530

----------------------------------------------------------------------
 .../agent/test/JavaCartridgeAgentTest.java      |  5 ++--
 .../console/README.md                           |  2 +-
 .../rest/endpoint/api/StratosApiV41.java        |  2 +-
 extensions/cep/modules/distribution/pom.xml     |  2 +-
 .../cep/modules/stratos-cep-extension/pom.xml   |  2 +-
 extensions/cep/pom.xml                          |  4 +--
 .../modules/haproxy-extension/pom.xml           |  1 +
 .../load-balancer/modules/lvs-extension/pom.xml |  1 +
 .../modules/nginx-extension/pom.xml             |  1 +
 .../python-cartridge-agent/distribution/pom.xml |  1 -
 .../python-cartridge-agent/integration/pom.xml  |  2 +-
 .../stratos-cli/modules/distribution/pom.xml    |  1 +
 products/stratos-cli/pom.xml                    |  1 -
 .../tests/StratosTestServerManager.java         | 28 +++++++++++++-------
 tools/config-scripts/ec2/config.sh              |  2 +-
 tools/config-scripts/gce/config.sh              |  1 -
 tools/config-scripts/openstack/config.sh        |  2 +-
 .../base-image/Dockerfile                       | 12 ++++-----
 tools/puppet3/modules/agent/files/README.txt    |  2 +-
 tools/puppet3/modules/haproxy/files/README.txt  |  2 +-
 tools/puppet3/modules/lb/files/README.txt       |  2 +-
 .../modules/python_agent/files/README.txt       |  2 +-
 tools/stratos-installer/README.md               |  3 ++-
 23 files changed, 47 insertions(+), 34 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/components/org.apache.stratos.cartridge.agent/src/test/java/org/apache/stratos/cartridge/agent/test/JavaCartridgeAgentTest.java
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.cartridge.agent/src/test/java/org/apache/stratos/cartridge/agent/test/JavaCartridgeAgentTest.java b/components/org.apache.stratos.cartridge.agent/src/test/java/org/apache/stratos/cartridge/agent/test/JavaCartridgeAgentTest.java
index e78a6e9..7db8f70 100644
--- a/components/org.apache.stratos.cartridge.agent/src/test/java/org/apache/stratos/cartridge/agent/test/JavaCartridgeAgentTest.java
+++ b/components/org.apache.stratos.cartridge.agent/src/test/java/org/apache/stratos/cartridge/agent/test/JavaCartridgeAgentTest.java
@@ -77,7 +77,8 @@ public class JavaCartridgeAgentTest {
     private static final String PARTITION_ID = "partition-1";
     private static final String TENANT_ID = "-1234";
     private static final String SERVICE_NAME = "php";
-    public static final String AGENT_NAME = "apache-stratos-cartridge-agent-4.2.0-SNAPSHOT";
+    public static final String AGENT_NAME = "distribution.name";
+    public static final String AGENT_VERSION = "distribution.version";
     private static HashMap<String, Executor> executorList;
     private static ArrayList<ServerSocket> serverSocketList;
     private final ArtifactUpdatedEvent artifactUpdatedEvent;
@@ -263,7 +264,7 @@ public class JavaCartridgeAgentTest {
             }
 
             log.info("Copying agent jar");
-            String agentJar = "org.apache.stratos.cartridge.agent-4.2.0-SNAPSHOT.jar";
+            String agentJar = "org.apache.stratos.cartridge.agent-" + agentVersion + ".jar";
             String agentJarSource = getResourcesFolderPath() + "/../" + agentJar;
             String agentJarDest = agentHome.getCanonicalPath() + "/lib/" + agentJar;
             FileUtils.copyFile(new File(agentJarSource), new File(agentJarDest));

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/components/org.apache.stratos.manager.console/console/README.md
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.manager.console/console/README.md b/components/org.apache.stratos.manager.console/console/README.md
index 583a542..1249ae3 100644
--- a/components/org.apache.stratos.manager.console/console/README.md
+++ b/components/org.apache.stratos.manager.console/console/README.md
@@ -1,4 +1,4 @@
-##Stratos 4.2.0 New UXD Implemantation##
+##Stratos UXD##
 ====================================
 
 ### Features ###

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/api/StratosApiV41.java
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/api/StratosApiV41.java b/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/api/StratosApiV41.java
index 8216d55..af0ff89 100644
--- a/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/api/StratosApiV41.java
+++ b/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/api/StratosApiV41.java
@@ -65,7 +65,7 @@ import java.util.ArrayList;
 import java.util.List;
 
 /**
- * Stratos API v4.1 for Stratos 4.2.0 release.
+ * Stratos API v4.1
  */
 @Path("/")
 public class StratosApiV41 extends AbstractApi {

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/extensions/cep/modules/distribution/pom.xml
----------------------------------------------------------------------
diff --git a/extensions/cep/modules/distribution/pom.xml b/extensions/cep/modules/distribution/pom.xml
index 276ec40..d22c8a3 100644
--- a/extensions/cep/modules/distribution/pom.xml
+++ b/extensions/cep/modules/distribution/pom.xml
@@ -22,7 +22,7 @@
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.stratos</groupId>
-        <artifactId>stratos-extensions</artifactId>
+        <artifactId>cep-extensions</artifactId>
         <version>4.2.0-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/extensions/cep/modules/stratos-cep-extension/pom.xml
----------------------------------------------------------------------
diff --git a/extensions/cep/modules/stratos-cep-extension/pom.xml b/extensions/cep/modules/stratos-cep-extension/pom.xml
index b80d022..7d0a0f0 100644
--- a/extensions/cep/modules/stratos-cep-extension/pom.xml
+++ b/extensions/cep/modules/stratos-cep-extension/pom.xml
@@ -22,7 +22,7 @@
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.stratos</groupId>
-        <artifactId>stratos-extensions</artifactId>
+        <artifactId>cep-extensions</artifactId>
         <version>4.2.0-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/extensions/cep/pom.xml
----------------------------------------------------------------------
diff --git a/extensions/cep/pom.xml b/extensions/cep/pom.xml
index 7c82bdf..58bbc49 100644
--- a/extensions/cep/pom.xml
+++ b/extensions/cep/pom.xml
@@ -22,8 +22,8 @@
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.stratos</groupId>
-        <artifactId>stratos-parent</artifactId>
-        <version>4.1.2</version>
+        <artifactId>stratos-extensions</artifactId>
+        <version>4.2.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>cep-extensions</artifactId>

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/extensions/load-balancer/modules/haproxy-extension/pom.xml
----------------------------------------------------------------------
diff --git a/extensions/load-balancer/modules/haproxy-extension/pom.xml b/extensions/load-balancer/modules/haproxy-extension/pom.xml
index ecd1af1..5f35e79 100644
--- a/extensions/load-balancer/modules/haproxy-extension/pom.xml
+++ b/extensions/load-balancer/modules/haproxy-extension/pom.xml
@@ -25,6 +25,7 @@
         <groupId>org.apache.stratos</groupId>
         <artifactId>stratos-load-balancer-extensions</artifactId>
         <version>4.2.0-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
     </parent>
 
     <artifactId>apache-stratos-haproxy-extension</artifactId>

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/extensions/load-balancer/modules/lvs-extension/pom.xml
----------------------------------------------------------------------
diff --git a/extensions/load-balancer/modules/lvs-extension/pom.xml b/extensions/load-balancer/modules/lvs-extension/pom.xml
index 60c6c7e..b70fd29 100644
--- a/extensions/load-balancer/modules/lvs-extension/pom.xml
+++ b/extensions/load-balancer/modules/lvs-extension/pom.xml
@@ -25,6 +25,7 @@
         <groupId>org.apache.stratos</groupId>
         <artifactId>stratos-load-balancer-extensions</artifactId>
         <version>4.2.0-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
     </parent>
 
     <artifactId>apache-stratos-lvs-extension</artifactId>

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/extensions/load-balancer/modules/nginx-extension/pom.xml
----------------------------------------------------------------------
diff --git a/extensions/load-balancer/modules/nginx-extension/pom.xml b/extensions/load-balancer/modules/nginx-extension/pom.xml
index 355e371..1c37cd6 100644
--- a/extensions/load-balancer/modules/nginx-extension/pom.xml
+++ b/extensions/load-balancer/modules/nginx-extension/pom.xml
@@ -25,6 +25,7 @@
         <groupId>org.apache.stratos</groupId>
         <artifactId>stratos-load-balancer-extensions</artifactId>
         <version>4.2.0-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
     </parent>
 
     <artifactId>apache-stratos-nginx-extension</artifactId>

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/products/python-cartridge-agent/distribution/pom.xml
----------------------------------------------------------------------
diff --git a/products/python-cartridge-agent/distribution/pom.xml b/products/python-cartridge-agent/distribution/pom.xml
index f41d891..74d1003 100644
--- a/products/python-cartridge-agent/distribution/pom.xml
+++ b/products/python-cartridge-agent/distribution/pom.xml
@@ -24,7 +24,6 @@
         <groupId>org.apache.stratos</groupId>
         <artifactId>python-cartridge-agent-parent</artifactId>
         <version>4.2.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
     </parent>
 
     <artifactId>python-cartridge-agent-distribution</artifactId>

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/products/python-cartridge-agent/integration/pom.xml
----------------------------------------------------------------------
diff --git a/products/python-cartridge-agent/integration/pom.xml b/products/python-cartridge-agent/integration/pom.xml
index 9b0922a..b9583b1 100755
--- a/products/python-cartridge-agent/integration/pom.xml
+++ b/products/python-cartridge-agent/integration/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.stratos</groupId>
         <artifactId>python-cartridge-agent-parent</artifactId>
-        <version>4.1.2</version>
+        <version>4.2.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>python-agent-integration</artifactId>

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/products/stratos-cli/modules/distribution/pom.xml
----------------------------------------------------------------------
diff --git a/products/stratos-cli/modules/distribution/pom.xml b/products/stratos-cli/modules/distribution/pom.xml
index 5a967aa..57ba1d9 100644
--- a/products/stratos-cli/modules/distribution/pom.xml
+++ b/products/stratos-cli/modules/distribution/pom.xml
@@ -24,6 +24,7 @@
         <groupId>org.apache.stratos</groupId>
         <artifactId>apache-stratos-cli-parent</artifactId>
         <version>4.2.0-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
     </parent>
 
     <artifactId>apache-stratos-cli</artifactId>

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/products/stratos-cli/pom.xml
----------------------------------------------------------------------
diff --git a/products/stratos-cli/pom.xml b/products/stratos-cli/pom.xml
index 18accfe..a269fd2 100644
--- a/products/stratos-cli/pom.xml
+++ b/products/stratos-cli/pom.xml
@@ -23,7 +23,6 @@
         <groupId>org.apache.stratos</groupId>
         <artifactId>stratos-products-parent</artifactId>
         <version>4.2.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/products/stratos/modules/integration/src/test/java/org/apache/stratos/integration/tests/StratosTestServerManager.java
----------------------------------------------------------------------
diff --git a/products/stratos/modules/integration/src/test/java/org/apache/stratos/integration/tests/StratosTestServerManager.java b/products/stratos/modules/integration/src/test/java/org/apache/stratos/integration/tests/StratosTestServerManager.java
index 83d333a..ea3d8f9 100755
--- a/products/stratos/modules/integration/src/test/java/org/apache/stratos/integration/tests/StratosTestServerManager.java
+++ b/products/stratos/modules/integration/src/test/java/org/apache/stratos/integration/tests/StratosTestServerManager.java
@@ -47,15 +47,25 @@ import static org.testng.Assert.assertNotNull;
  */
 public class StratosTestServerManager extends TestServerManager {
     private static final Log log = LogFactory.getLog(StratosTestServerManager.class);
-
-    private final static String CARBON_ZIP = SampleApplicationsTest.class.getResource("/").getPath() +
-            "/../../../distribution/target/apache-stratos-4.2.0-SNAPSHOT.zip";
-    private final static int PORT_OFFSET = 0;
-    private static final String ACTIVEMQ_BIND_ADDRESS = "tcp://localhost:61617";
-    private static final String MOCK_IAAS_XML_FILE = "mock-iaas.xml";
-    private static final String SCALING_DROOL_FILE = "scaling.drl";
-    private static final String JNDI_PROPERTIES_FILE = "jndi.properties";
-    private static final String JMS_OUTPUT_ADAPTER_FILE = "JMSOutputAdaptor.xml";
+    private static Properties integrationProperties;
+    public static final String BASE_PATH = StratosTestServerManager.class.getResource("/").getPath();
+    public static final String STRATOS_DISTRIBUTION_NAME = "distribution.path";
+    public final static String PORT_OFFSET = "carbon.port.offset";
+    public static final String ACTIVEMQ_BIND_ADDRESS = "activemq.bind.address";
+    public static final String STRATOS_ENDPOINT = "stratos.endpoint";
+    public static final String ADMIN_USERNAME = "stratos.admin.username";
+    public static final String ADMIN_PASSWORD = "stratos.admin.password";
+    public static final String MOCK_IAAS_XML_FILE = "mock-iaas.xml";
+    public static final String SCALING_DROOL_FILE = "scaling.drl";
+    public static final String JNDI_PROPERTIES_FILE = "jndi.properties";
+    public static final String JMS_OUTPUT_ADAPTER_FILE = "JMSOutputAdaptor.xml";
+
+    protected String distributionName;
+    protected int portOffset;
+    protected String adminUsername;
+    protected String adminPassword;
+    protected String stratosEndpoint;
+    protected String activemqBindAddress;
     protected RestClient restClient;
     private BrokerService broker = new BrokerService();
     private TestLogAppender testLogAppender = new TestLogAppender();

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/tools/config-scripts/ec2/config.sh
----------------------------------------------------------------------
diff --git a/tools/config-scripts/ec2/config.sh b/tools/config-scripts/ec2/config.sh
index 21b43de..e981fb8 100755
--- a/tools/config-scripts/ec2/config.sh
+++ b/tools/config-scripts/ec2/config.sh
@@ -33,7 +33,7 @@ CP=`which cp`
 MV=`which mv`
 
 HOSTSFILE=/etc/hosts
-LOCKFILE=/mnt/apache-stratos-cartridge-agent-4.2.0/wso2carbon.lck
+LOCKFILE=/mnt/apache-stratos-cartridge-agent/wso2carbon.lck
 DATE=`date +%d%m%y%S`
 RANDOMNUMBER="`${TR} -c -d 0-9 < /dev/urandom | ${HEAD} -c 4`${DATE}"
 

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/tools/config-scripts/gce/config.sh
----------------------------------------------------------------------
diff --git a/tools/config-scripts/gce/config.sh b/tools/config-scripts/gce/config.sh
index c8b8ee2..95eb6e0 100644
--- a/tools/config-scripts/gce/config.sh
+++ b/tools/config-scripts/gce/config.sh
@@ -36,7 +36,6 @@ CURL=`which curl`
 HOSTSFILE=/etc/hosts
 DATE=`date +%d%m%y%S`
 RANDOMNUMBER="`${TR} -c -d 0-9 < /dev/urandom | ${HEAD} -c 4`${DATE}"
-LOCKFILE=/mnt/apache-stratos-cartridge-agent-4.2.0/wso2carbon.lck
 
 function valid_ip()
 {

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/tools/config-scripts/openstack/config.sh
----------------------------------------------------------------------
diff --git a/tools/config-scripts/openstack/config.sh b/tools/config-scripts/openstack/config.sh
index 21b43de..e981fb8 100755
--- a/tools/config-scripts/openstack/config.sh
+++ b/tools/config-scripts/openstack/config.sh
@@ -33,7 +33,7 @@ CP=`which cp`
 MV=`which mv`
 
 HOSTSFILE=/etc/hosts
-LOCKFILE=/mnt/apache-stratos-cartridge-agent-4.2.0/wso2carbon.lck
+LOCKFILE=/mnt/apache-stratos-cartridge-agent/wso2carbon.lck
 DATE=`date +%d%m%y%S`
 RANDOMNUMBER="`${TR} -c -d 0-9 < /dev/urandom | ${HEAD} -c 4`${DATE}"
 

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/tools/docker-images/cartridge-docker-images/base-image/Dockerfile
----------------------------------------------------------------------
diff --git a/tools/docker-images/cartridge-docker-images/base-image/Dockerfile b/tools/docker-images/cartridge-docker-images/base-image/Dockerfile
index 50bd112..47bf233 100644
--- a/tools/docker-images/cartridge-docker-images/base-image/Dockerfile
+++ b/tools/docker-images/cartridge-docker-images/base-image/Dockerfile
@@ -22,7 +22,7 @@
 FROM debian:7.8
 MAINTAINER dev@stratos.apache.org
 
-ENV PCA_DISTRIBUTION_NAME apache-stratos-python-cartridge-agent-4.1.2
+ENV PCA_DISTRIBUTION_NAME apache-stratos-python-cartridge-agent-4.2.0-SNAPSHOT
 # ------------------
 # Setup ssh server
 # ------------------
@@ -49,13 +49,13 @@ RUN pip install yapsy
 # -------------------------
 WORKDIR /mnt/
 
-ADD packs/apache-stratos-python-cartridge-agent-4.2.0-SNAPSHOT.zip /mnt/apache-stratos-python-cartridge-agent-4.2.0-SNAPSHOT.zip
-RUN unzip -q /mnt/apache-stratos-python-cartridge-agent-4.2.0-SNAPSHOT.zip -d /mnt/
-RUN rm /mnt/apache-stratos-python-cartridge-agent-4.2.0-SNAPSHOT.zip
+ADD packs/${PCA_DISTRIBUTION_NAME}.zip /mnt/${PCA_DISTRIBUTION_NAME}.zip
+RUN unzip -q /mnt/${PCA_DISTRIBUTION_NAME}.zip -d /mnt/
+RUN rm /mnt/${PCA_DISTRIBUTION_NAME}.zip
 
-RUN mkdir -p /mnt/apache-stratos-python-cartridge-agent-4.2.0-SNAPSHOT/payload
+RUN mkdir -p /mnt/${PCA_DISTRIBUTION_NAME}/payload
 
-RUN chmod +x /mnt/apache-stratos-python-cartridge-agent-4.2.0-SNAPSHOT/extensions/bash/*
+RUN chmod +x /mnt/${PCA_DISTRIBUTION_NAME}/extensions/bash/*
 RUN mkdir -p /var/log/apache-stratos/
 RUN touch /var/log/apache-stratos/cartridge-agent-extensions.log
 

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/tools/puppet3/modules/agent/files/README.txt
----------------------------------------------------------------------
diff --git a/tools/puppet3/modules/agent/files/README.txt b/tools/puppet3/modules/agent/files/README.txt
index 7526a8d..c988d4d 100644
--- a/tools/puppet3/modules/agent/files/README.txt
+++ b/tools/puppet3/modules/agent/files/README.txt
@@ -7,6 +7,6 @@ This folder should have following:
 eg:
 if $mb_type = activemq, folder structure of this folder would be:
 >$ls
->activemq  apache-stratos-python-cartridge-agent-4.2.0-SNAPSHOT.zip
+>activemq  apache-stratos-python-cartridge-agent-<java-agent-version>.zip
 
 3. Under $mb_type folder, please add all the client jars, that should be copied to the agent's lib directory.

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/tools/puppet3/modules/haproxy/files/README.txt
----------------------------------------------------------------------
diff --git a/tools/puppet3/modules/haproxy/files/README.txt b/tools/puppet3/modules/haproxy/files/README.txt
index d1306c3..0045c1c 100644
--- a/tools/puppet3/modules/haproxy/files/README.txt
+++ b/tools/puppet3/modules/haproxy/files/README.txt
@@ -7,6 +7,6 @@ This folder should have following:
 eg:
 if $mb_type = activemq, folder structure of this folder would be:
 >$ls
->activemq  apache-stratos-haproxy-extension-4.2.0-SNAPSHOT.zip
+>activemq  apache-stratos-haproxy-extension-<haproxy-version>.zip
 
 3. Under $mb_type folder, please add all the client jars, that should be copied to the haproxy-extension's lib directory.

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/tools/puppet3/modules/lb/files/README.txt
----------------------------------------------------------------------
diff --git a/tools/puppet3/modules/lb/files/README.txt b/tools/puppet3/modules/lb/files/README.txt
index 3953149..90ce24e 100644
--- a/tools/puppet3/modules/lb/files/README.txt
+++ b/tools/puppet3/modules/lb/files/README.txt
@@ -7,6 +7,6 @@ This folder should have following:
 eg:
 if $mb_type = activemq, folder structure of this folder would be:
 >$ls
->activemq  apache-stratos-load-balancer-4.2.0-SNAPSHOT.zip
+>activemq  apache-stratos-load-balancer-<load-balancer-version>.zip
 
 3. Under $mb_type folder, please add all the client jars, that should be copied to the load balancer's repository/components/lib directory.

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/tools/puppet3/modules/python_agent/files/README.txt
----------------------------------------------------------------------
diff --git a/tools/puppet3/modules/python_agent/files/README.txt b/tools/puppet3/modules/python_agent/files/README.txt
index 7526a8d..163193e 100644
--- a/tools/puppet3/modules/python_agent/files/README.txt
+++ b/tools/puppet3/modules/python_agent/files/README.txt
@@ -7,6 +7,6 @@ This folder should have following:
 eg:
 if $mb_type = activemq, folder structure of this folder would be:
 >$ls
->activemq  apache-stratos-python-cartridge-agent-4.2.0-SNAPSHOT.zip
+>activemq  apache-stratos-python-cartridge-agent-<python-agent-version>.zip
 
 3. Under $mb_type folder, please add all the client jars, that should be copied to the agent's lib directory.

http://git-wip-us.apache.org/repos/asf/stratos/blob/9b1d2720/tools/stratos-installer/README.md
----------------------------------------------------------------------
diff --git a/tools/stratos-installer/README.md b/tools/stratos-installer/README.md
index ee39f98..61665fe 100644
--- a/tools/stratos-installer/README.md
+++ b/tools/stratos-installer/README.md
@@ -1,4 +1,5 @@
-Apache Stratos 4.2.0 Installer
+------------------------------
+Apache Stratos Installer
 ------------------------------
 
 Stratos-Installer is a tool to install Stratos in Single JVM as well as in distributed setup.