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/e8197534 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/e8197534 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/e8197534 Branch: refs/heads/quickcloud Commit: e8197534ae978486836a25062496fcb8f5a1ee8f Parents: f28d788 Author: Chiradeep Vittal <chirad...@apache.org> Authored: Mon Mar 25 12:15:14 2013 -0700 Committer: Chiradeep Vittal <chirad...@apache.org> Committed: Mon Mar 25 12:17:50 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/e8197534/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/e8197534/services/console-proxy/server/pom.xml ---------------------------------------------------------------------- diff --git a/services/console-proxy/server/pom.xml b/services/console-proxy/server/pom.xml index 0df7559..a618d1b 100644 --- a/services/console-proxy/server/pom.xml +++ b/services/console-proxy/server/pom.xml @@ -242,6 +242,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>