Skip to Content.
Sympa Menu

idok-commit - [idok-commit] idok commit r214 - in trunk/sites/psi: . scripts/admin

idok-commit AT lists.psi.ch

Subject: Commit emails of the iDok project

List archive

[idok-commit] idok commit r214 - in trunk/sites/psi: . scripts/admin


Chronological Thread 
  • From: "AFS account Florian Huebner" <huebner AT savannah.psi.ch>
  • To: idok-commit AT lists.psi.ch
  • Subject: [idok-commit] idok commit r214 - in trunk/sites/psi: . scripts/admin
  • Date: Wed, 17 Sep 2008 12:18:00 +0200
  • List-archive: <https://lists.web.psi.ch/pipermail/idok-commit/>
  • List-id: Commit emails of the iDok project <idok-commit.lists.psi.ch>

Author: huebner
Date: Wed Sep 17 12:17:59 2008
New Revision: 214

Log:
Updated the deploy targets and scripts to include the Open Office Daemon

Modified:
trunk/sites/psi/build.xml
trunk/sites/psi/scripts/admin/deploy_prod.sh
trunk/sites/psi/scripts/admin/deploy_qa.sh

Modified: trunk/sites/psi/build.xml
==============================================================================
--- trunk/sites/psi/build.xml (original)
+++ trunk/sites/psi/build.xml Wed Sep 17 12:17:59 2008
@@ -255,8 +255,8 @@
</condition>
</fail>

- <input message="Deploy only 'dmsd', 'dmssd' or everything? "
- validargs="dmsd,dmssd,all"
+ <input message="Deploy only 'dmsd', 'dmssd', 'ood' or
everything? "
+ validargs="dmsd,dmssd,ood,all"
addproperty="deploy.target" />
<exec dir="" executable="${deploy_qa.path}">
<arg value="${deploy.target}" />
@@ -277,7 +277,7 @@
</fail>

<input message="Deploy only 'dmsd' or everything? "
- validargs="dmsd,dmssd,all"
+ validargs="dmsd,dmssd,ood,all"
addproperty="deploy.target" />
<exec executable="${deploy_prod.path}">
<arg value="${deploy.target}" />

Modified: trunk/sites/psi/scripts/admin/deploy_prod.sh
==============================================================================
--- trunk/sites/psi/scripts/admin/deploy_prod.sh (original)
+++ trunk/sites/psi/scripts/admin/deploy_prod.sh Wed Sep 17 12:17:59
2008
@@ -24,7 +24,7 @@
#

function usage() {
- echo "Usage: $0 (all|dmsd|dmssd)"
+ echo "Usage: $0 (all|dmsd|dmssd|ood)"
exit 1
}

@@ -37,10 +37,13 @@
if [ "x$1" = "xall" ]; then
DO_IDOK=1
DO_DMSD=1
+ DO_OOD=1
elif [ "x$1" = "xdmsd" ]; then
DO_DMSD=1
elif [ "x$1" = "xdmssd" ]; then
DO_IDOK=1
+elif [ "x$1" = "xood" ]; then
+ DO_OOD=1
else
usage
fi
@@ -56,6 +59,9 @@
if [ $DO_DMSD ]; then
COPY_SOURCES="$COPY_SOURCES opt/dmsd"
fi
+if [ $DO_OOD ]; then
+ COPY_SOURCES="$COPY_SOURCES opt/dms/ood"
+fi

REPLACE_PATTERNS=
if [ $DO_IDOK ]; then

Modified: trunk/sites/psi/scripts/admin/deploy_qa.sh
==============================================================================
--- trunk/sites/psi/scripts/admin/deploy_qa.sh (original)
+++ trunk/sites/psi/scripts/admin/deploy_qa.sh Wed Sep 17 12:17:59 2008
@@ -24,7 +24,7 @@
#

function usage() {
- echo "Usage: $0 (all|dmsd|dmssd)"
+ echo "Usage: $0 (all|dmsd|dmssd|ood)"
exit 1
}

@@ -34,13 +34,17 @@

DO_IDOK=
DO_DMSD=
+DO_OOD=
if [ "x$1" = "xall" ]; then
DO_IDOK=1
DO_DMSD=1
+ DO_OOD=1
elif [ "x$1" = "xdmsd" ]; then
DO_DMSD=1
elif [ "x$1" = "xdmssd" ]; then
DO_IDOK=1
+elif [ "x$1" = "xood" ]; then
+ DO_OOD=1
else
usage
fi
@@ -56,6 +60,9 @@
if [ $DO_DMSD ]; then
COPY_SOURCES="$COPY_SOURCES opt/dmsd"
fi
+if [ $DO_OOD ]; then
+ COPY_SOURCES="$COPY_SOURCES opt/dms/ood"
+fi

REPLACE_PATTERNS=
if [ $DO_IDOK ]; then



  • [idok-commit] idok commit r214 - in trunk/sites/psi: . scripts/admin, AFS account Florian Huebner, 09/17/2008

Archive powered by MHonArc 2.6.19.

Top of Page