Skip to content

Commit 1f8e994

Browse files
committed
move to devcloud
1 parent 023c2e4 commit 1f8e994

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<import file="${base.dir}/build/build-marvin.xml" optional="true"/>
2828
<import file="${base.dir}/build/package.xml" optional="true"/>
2929
<import file="${base.dir}/build/developer.xml" optional="true"/>
30-
<import file="${base.dir}/build/build-clouddev.xml" optional="true"/>
30+
<import file="${base.dir}/build/build-devcloud.xml" optional="true"/>
3131
<import file="${base.dir}/build/build-usage.xml" optional="false"/>
3232
<import file="${base.dir}/build/build-aws-api.xml" optional="false"/>
3333
</project>
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030

3131
<target name="deploydbIfSet" if="deploydb.is.set">
3232
<echo message="ant deploydb"/>
33-
<sshexec host="${host}" port="${port}" username="root" password="password" command="echo $CATALINA_HOME; export CATALINA_HOME=/opt/apache-tomcat-6.0.32;killall java;cd /opt/incubator-cloudstack;ant deploycddb"/>
33+
<sshexec host="${host}" port="${port}" username="root" password="password" command="echo $CATALINA_HOME; export CATALINA_HOME=/opt/cloudstack/apache-tomcat-6.0.32;killall java;cd /opt/cloudstack/incubator-cloudstack;ant deploycddb"/>
3434
</target>
3535

3636
<target name="rdeploydb">
3737
<echo message="ant rdeploydb"/>
38-
<sshexec host="${host}" port="${port}" username="root" password="password" command="echo $CATALINA_HOME; export CATALINA_HOME=/opt/apache-tomcat-6.0.32;killall java;cd /opt/incubator-cloudstack;ant deploycddb"/>
38+
<sshexec host="${host}" port="${port}" username="root" password="password" command="echo $CATALINA_HOME; export CATALINA_HOME=/opt/cloudstack/apache-tomcat-6.0.32;killall java;cd /opt/cloudstack/incubator-cloudstack;ant deploycddb"/>
3939
</target>
4040

4141
<target name="deploycddb" description="deploy specific db configuration for clouddev" depends="deploydb">
@@ -46,12 +46,12 @@
4646

4747
<target name="rdebug-suspend" >
4848
<echo message="ant debug-suspend"/>
49-
<sshexec host="${host}" port="${port}" username="root" password="password" command="killall java;sleep 1;echo $CATALINA_HOME; export CATALINA_HOME=/opt/apache-tomcat-6.0.32;cd /opt/incubator-cloudstack;ant deploy-server;ant debug-suspend"/>
49+
<sshexec host="${host}" port="${port}" username="root" password="password" command="killall java;sleep 1;echo $CATALINA_HOME; export CATALINA_HOME=/opt/cloudstack/apache-tomcat-6.0.32;cd /opt/cloudstack/incubator-cloudstack;ant deploy-server;ant debug-suspend"/>
5050
</target>
5151

5252
<target name="rdebug">
5353
<echo message="ant debug"/>
54-
<sshexec host="${host}" port="${port}" username="root" password="password" command="killall java;sleep 1;echo $CATALINA_HOME; export CATALINA_HOME=/opt/apache-tomcat-6.0.32;cd /opt/incubator-cloudstack;ant deploy-server; ant debug"/>
54+
<sshexec host="${host}" port="${port}" username="root" password="password" command="killall java;sleep 1;echo $CATALINA_HOME; export CATALINA_HOME=/opt/cloudstack/apache-tomcat-6.0.32;cd /opt/cloudstack/incubator-cloudstack;ant deploy-server; ant debug"/>
5555
</target>
5656

5757

@@ -63,33 +63,33 @@
6363

6464

6565
<echo message="copying build folder to remote"/>
66-
<scp trust="yes" port="${port}" todir="root:password@${host}:/opt/incubator-cloudstack/build">
66+
<scp trust="yes" port="${port}" todir="root:password@${host}:/opt/cloudstack/incubator-cloudstack/build">
6767
<fileset dir="build">
6868
</fileset>
6969
</scp>
7070

71-
<scp trust="yes" port="${port}" file="build.xml" todir="root:password@${host}:/opt/incubator-cloudstack/">
71+
<scp trust="yes" port="${port}" file="build.xml" todir="root:password@${host}:/opt/cloudstack/incubator-cloudstack/">
7272
</scp>
7373

7474
<echo message="copying deps folder to remote"/>
75-
<scp trust="yes" port="${port}" todir="root:password@${host}:/opt/incubator-cloudstack/deps">
75+
<scp trust="yes" port="${port}" todir="root:password@${host}:/opt/cloudstack/incubator-cloudstack/deps">
7676
<fileset dir="deps">
7777
</fileset>
7878
</scp>
7979

8080
<echo message="copying target folder to remote"/>
81-
<scp trust="yes" port="${port}" todir="root:password@${host}:/opt/incubator-cloudstack/target">
81+
<scp trust="yes" port="${port}" todir="root:password@${host}:/opt/cloudstack/incubator-cloudstack/target">
8282
<fileset dir="target">
8383
</fileset>
8484
</scp>
8585

8686
<echo message="copying dist folder to remote"/>
87-
<scp trust="yes" port="${port}" todir="root:password@${host}:/opt/incubator-cloudstack/dist">
87+
<scp trust="yes" port="${port}" todir="root:password@${host}:/opt/cloudstack/incubator-cloudstack/dist">
8888
<fileset dir="dist">
8989
</fileset>
9090
</scp>
9191

92-
<sshexec host="${host}" port="${port}" username="root" password="password" command="echo $CATALINA_HOME; export CATALINA_HOME=/opt/apache-tomcat-6.0.32;cd /opt/incubator-cloudstack;ant deploy-server"/>
92+
<sshexec host="${host}" port="${port}" username="root" password="password" command="echo $CATALINA_HOME; export CATALINA_HOME=/opt/cloudstack/apache-tomcat-6.0.32;cd /opt/cloudstack/incubator-cloudstack;ant deploy-server"/>
9393

9494
</target>
9595

0 commit comments

Comments
 (0)