Author: cjblythe
Date: Tue Feb 27 09:55:22 2007
New Revision: 512343
URL: http://svn.apache.org/viewvc?view=rev&rev=512343
Log:
DAYTRADER-36 Remove images dir and clean up bin dir
Added:
geronimo/daytrader/branches/1.2/bin/deploy.sh (with props)
geronimo/daytrader/branches/1.2/bin/undeploy.sh (with props)
Removed:
geronimo/daytrader/branches/1.2/bin/debug.sh
geronimo/daytrader/branches/1.2/bin/depdb2resources.sh
geronimo/daytrader/branches/1.2/bin/depderbyresources.sh
geronimo/daytrader/branches/1.2/bin/depresources.sh
geronimo/daytrader/branches/1.2/bin/setupdb2.sh
geronimo/daytrader/branches/1.2/bin/startDebugConsole.sh
geronimo/daytrader/branches/1.2/bin/undepresources.sh
geronimo/daytrader/branches/1.2/images/
Added: geronimo/daytrader/branches/1.2/bin/deploy.sh
URL: http://svn.apache.org/viewvc/geronimo/daytrader/branches/1.2/bin/deploy.sh?view=auto&rev=512343
==============================================================================
--- geronimo/daytrader/branches/1.2/bin/deploy.sh (added)
+++ geronimo/daytrader/branches/1.2/bin/deploy.sh Tue Feb 27 09:55:22 2007
@@ -0,0 +1,30 @@
+#!/bin/bash
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+if [ "${JAVA_HOME}" = "" ]
+then
+ echo "Please define the JAVA_HOME environment variable."
+ exit
+fi
+
+if [ "${GERONIMO_HOME}" = "" ]
+then
+ echo "Please define the GERONIMO_HOME environment variable."
+ exit
+fi
+
+${JAVA_HOME}/bin/java -jar ${GERONIMO_HOME}/bin/deployer.jar --user system --password manager
deploy daytrader-ear-1.2-SNAPSHOT.ear daytrader-1.2-beta-plan.xml
Propchange: geronimo/daytrader/branches/1.2/bin/deploy.sh
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/daytrader/branches/1.2/bin/deploy.sh
------------------------------------------------------------------------------
svn:executable = *
Propchange: geronimo/daytrader/branches/1.2/bin/deploy.sh
------------------------------------------------------------------------------
svn:keywords = Date Revision
Added: geronimo/daytrader/branches/1.2/bin/undeploy.sh
URL: http://svn.apache.org/viewvc/geronimo/daytrader/branches/1.2/bin/undeploy.sh?view=auto&rev=512343
==============================================================================
--- geronimo/daytrader/branches/1.2/bin/undeploy.sh (added)
+++ geronimo/daytrader/branches/1.2/bin/undeploy.sh Tue Feb 27 09:55:22 2007
@@ -0,0 +1,33 @@
+#!/bin/bash
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+if [ "${JAVA_HOME}" = "" ]
+then
+ echo "Please define the JAVA_HOME environment variable."
+ exit
+fi
+
+if [ "${GERONIMO_HOME}" = "" ]
+then
+ echo "Please define the GERONIMO_HOME environment variable."
+ exit
+fi
+
+${JAVA_HOME}/bin/java -jar ${GERONIMO_HOME}/bin/deployer.jar --user system --password manager
stop geronimo/daytrader/1.2-SNAPSHOT/car
+${JAVA_HOME}/bin/java -jar ${GERONIMO_HOME}/bin/deployer.jar --user system --password manager
undeploy geronimo/daytrader/1.2-SNAPSHOT/car
+
+
Propchange: geronimo/daytrader/branches/1.2/bin/undeploy.sh
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/daytrader/branches/1.2/bin/undeploy.sh
------------------------------------------------------------------------------
svn:executable = *
Propchange: geronimo/daytrader/branches/1.2/bin/undeploy.sh
------------------------------------------------------------------------------
svn:keywords = Date Revision
|