[jboss-cvs] JBossAS SVN: r81208 - projects/cluster/varia/sessionstress.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Nov 17 23:12:29 EST 2008


Author: bstansberry at jboss.com
Date: 2008-11-17 23:12:29 -0500 (Mon, 17 Nov 2008)
New Revision: 81208

Removed:
   projects/cluster/varia/sessionstress/deploy-one.sh
   projects/cluster/varia/sessionstress/deploy.sh
   projects/cluster/varia/sessionstress/undeploy-one.sh
   projects/cluster/varia/sessionstress/undeploy.sh
Log:
Get rid of deploy/undeploy scripts

Deleted: projects/cluster/varia/sessionstress/deploy-one.sh
===================================================================
--- projects/cluster/varia/sessionstress/deploy-one.sh	2008-11-18 04:10:51 UTC (rev 81207)
+++ projects/cluster/varia/sessionstress/deploy-one.sh	2008-11-18 04:12:29 UTC (rev 81208)
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-TARGET=${1-cluster08}
-JBOSS_CONFIG=${2-base}
-
-if [ "x${JBOSS_TMP}" == "x" ]
-then
-   JBOSS_TMP=/tmp/SessionStress
-fi
-JBOSS_HOME=${JBOSS_TMP}/ActiveJBoss
-
-DEPLOY_COMMAND="cp -r -d ./web.war $JBOSS_HOME/server/$JBOSS_CONFIG/deploy"
-
-echo "Deploying to $TARGET"
-ssh $TARGET.qa.atl.jboss.com "$DEPLOY_COMMAND"

Deleted: projects/cluster/varia/sessionstress/deploy.sh
===================================================================
--- projects/cluster/varia/sessionstress/deploy.sh	2008-11-18 04:10:51 UTC (rev 81207)
+++ projects/cluster/varia/sessionstress/deploy.sh	2008-11-18 04:12:29 UTC (rev 81208)
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-NUM_SERVERS=${1-8}
-JBOSS_CONFIG=${2-base}
-
-if [ "x${JBOSS_TMP}" == "x" ]
-then
-   JBOSS_TMP=/tmp/SessionStress
-fi
-JBOSS_HOME=${JBOSS_TMP}/ActiveJBoss
-
-AP_SERVERS=( cluster01 cluster02 cluster03 cluster04 cluster05 cluster06 cluster07 cluster08 cluster09 cluster10 )
-DEPLOY_COMMAND="cp -r -d ./web.war $JBOSS_HOME/server/$JBOSS_CONFIG/deploy"
-
-for ((idx=0; idx < NUM_SERVERS ; idx++))
-do
-  server="${AP_SERVERS[idx]}"
-  echo "Deploying to $server"
-  ssh $server.qa.atl.jboss.com "$DEPLOY_COMMAND"
-done
-

Deleted: projects/cluster/varia/sessionstress/undeploy-one.sh
===================================================================
--- projects/cluster/varia/sessionstress/undeploy-one.sh	2008-11-18 04:10:51 UTC (rev 81207)
+++ projects/cluster/varia/sessionstress/undeploy-one.sh	2008-11-18 04:12:29 UTC (rev 81208)
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-TARGET=${1-cluster08}
-JBOSS_CONFIG=${2-base}
-
-if [ "x${JBOSS_TMP}" == "x" ]
-then
-   JBOSS_TMP=/tmp/SessionStress
-fi
-JBOSS_HOME=${JBOSS_TMP}/ActiveJBoss
-
-UNDEPLOY_COMMAND="rm -rf $JBOSS_HOME/server/$JBOSS_CONFIG/deploy/web.war"
-
-echo "Undeploying from $TARGET"
-ssh $TARGET.qa.atl.jboss.com "$UNDEPLOY_COMMAND"
-

Deleted: projects/cluster/varia/sessionstress/undeploy.sh
===================================================================
--- projects/cluster/varia/sessionstress/undeploy.sh	2008-11-18 04:10:51 UTC (rev 81207)
+++ projects/cluster/varia/sessionstress/undeploy.sh	2008-11-18 04:12:29 UTC (rev 81208)
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-NUM_SERVERS=${1-8}
-JBOSS_CONFIG=${2-base}
-
-if [ "x${JBOSS_TMP}" == "x" ]
-then
-   JBOSS_TMP=/tmp/SessionStress
-fi
-JBOSS_HOME=${JBOSS_TMP}/ActiveJBoss
-
-AP_SERVERS=( cluster01 cluster02 cluster03 cluster04 cluster05 cluster06 cluster07 cluster08 cluster09 cluster10 )
-UNDEPLOY_COMMAND="rm -rf $JBOSS_HOME/server/$JBOSS_CONFIG/deploy/web.war"
-
-for ((idx=0; idx < NUM_SERVERS ; idx++))
-do
-  server="${AP_SERVERS[idx]}"
-  echo "Undeploying from $server"
-  ssh $server.qa.atl.jboss.com "$UNDEPLOY_COMMAND"
-done
-




More information about the jboss-cvs-commits mailing list