QuickCloud: start console proxy service from mvn exec:java
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/bf0c901e Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/bf0c901e Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/bf0c901e Branch: refs/heads/quickcloud2 Commit: bf0c901e95a17cc1effd9c093433884a87033e15 Parents: 406aed2 Author: Chiradeep Vittal <chirad...@apache.org> Authored: Mon Mar 25 12:15:14 2013 -0700 Committer: Chiradeep Vittal <chirad...@apache.org> Committed: Fri Apr 5 14:55:46 2013 -0700 ---------------------------------------------------------------------- services/console-proxy/server/conf/log4j-cloud.xml | 2 +- services/console-proxy/server/pom.xml | 38 +++++++++++++++ 2 files changed, 39 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/bf0c901e/services/console-proxy/server/conf/log4j-cloud.xml ---------------------------------------------------------------------- diff --git a/services/console-proxy/server/conf/log4j-cloud.xml b/services/console-proxy/server/conf/log4j-cloud.xml index 5b31c9d..2d1d361 100644 --- a/services/console-proxy/server/conf/log4j-cloud.xml +++ b/services/console-proxy/server/conf/log4j-cloud.xml @@ -27,7 +27,7 @@ under the License. <!-- A time/date based rolling appender --> <appender name="FILE" class="org.apache.log4j.DailyRollingFileAppender"> - <param name="File" value="/var/log/cloud/systemvm.log"/> + <param name="File" value="${log.home}systemvm.log"/> <param name="Append" value="true"/> <param name="Threshold" value="DEBUG"/> http://git-wip-us.apache.org/repos/asf/cloudstack/blob/bf0c901e/services/console-proxy/server/pom.xml ---------------------------------------------------------------------- diff --git a/services/console-proxy/server/pom.xml b/services/console-proxy/server/pom.xml index f57b4ca..fd7b964 100644 --- a/services/console-proxy/server/pom.xml +++ b/services/console-proxy/server/pom.xml @@ -254,6 +254,44 @@ </plugins> </build> </profile> + <profile> + <id>quickcloud</id> + <activation> + <property> + <name>quickcloud</name> + </property> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.2.1</version> + <executions> + <execution> + <goals> + <goal>java</goal> + </goals> + </execution> + </executions> + <configuration> + <mainClass>com.cloud.agent.AgentShell</mainClass> + <arguments> + <argument>zone=1</argument> + <argument>pod=1</argument> + <argument>host=192.168.56.1</argument> + </arguments> + <systemProperties> + <systemProperty> + <key>javax.net.ssl.trustStore</key> + <value>certs/realhostip.keystore</value> + </systemProperty> + </systemProperties> + </configuration> + </plugin> + </plugins> + </build> + </profile> </profiles> </project>