Re: devcloud - new version (0.2) ready for testing

2014-02-24 Thread chris snow
Hi Ian, Thanks for the link - I'm uploading to dropbox now (2 hours remaining). I'll also take a look at sourceforge or github (although github doesn't seem to like large files being uploaded, so I don't know how 2creatives get around that). Best regards, Chris On Tue, Feb 25, 2014 at 4:38 AM,

RE: Review Request 18310: dnsmasq fix for bridged networks

2014-02-24 Thread Joris van Lieshout
Hi Sheng, Based on your feedback I did some testing and it appears that the issue is not with offering addresses but with dhcp-options. The static option indeed prevents addresses being leased to unknown macs but it does not prevent other dhcp-options, like dns servers, to be handed out. So far

RE: [4.3] Cherry pick b44901c059e50ae34f55a56809cda74d4c0c08f9

2014-02-24 Thread Rajesh Battala
This commit will resolve the issue https://issues.apache.org/jira/browse/CLOUDSTACK-6159 Thanks Rajesh Battala -Original Message- From: Rajesh Battala [mailto:rajesh.batt...@citrix.com] Sent: Tuesday, February 25, 2014 11:39 AM To: dev@cloudstack.apache.org; Animesh Chaturvedi Subject:

[4.3] Cherry pick b44901c059e50ae34f55a56809cda74d4c0c08f9

2014-02-24 Thread Rajesh Battala
Hi Animesh, Can you please cherry-pick b44901c059e50ae34f55a56809cda74d4c0c08f9. Code change is only to the hyper-v agent code. Thanks Rajesh Battala

RE: [PROPOSAL] Windowsfication Of ACS

2014-02-24 Thread Damoder Reddy
Hi Alex, Apart from agent scripts, there are couple of scripts those gets executed for during the management server startup like injecting ssh keys into systemvm.iso etc.. Still I am in search of any other scripts will get called in management server, though I could not find any as of now. Th

Re: Yet another mail on code quality

2014-02-24 Thread Marcus
Sometimes it's not easy to revert the commit, I suppose a bug should be raised and assigned to the individual, in that case. For example, someone branches and then merges without pulling in fixes that occurred in between, this is fairly common and can be painful when file locations are shifted arou

Re: developers and mysql

2014-02-24 Thread Rajani Karuturi
Can we move the mysql-connector-java dependency to the parent POM(SOURCE-ROOT/pom.xml) and define it different scopes for each profile? ie) developer mysql mysql-connector-java compile production mysql

Re: Review Request 17843: CLOUDSTACK-6058: Update the java binding used to the latest one that came with XenServer 6.2 sp1

2014-02-24 Thread ASF Subversion and Git Services
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/17843/#review35373 --- Commit f501ec694ed94f6417354a24ea44ee09967cf25f in cloudstack's bran

Re: Review Request 17843: CLOUDSTACK-6058: Update the java binding used to the latest one that came with XenServer 6.2 sp1

2014-02-24 Thread ASF Subversion and Git Services
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/17843/#review35374 --- Commit 4e0c1bb4e1c4711ed40737fc20fafe6126de733b in cloudstack's bran

RE: [PROPOSAL] Windowsfication Of ACS

2014-02-24 Thread Alex Huang
Abhi, I think you misunderstood. I meant that it should not depend on things later releases like .net framework. See the following wiki page. http://en.wikipedia.org/wiki/.NET_Framework#Versions I would imagine .net framework 3 or 3.5 would be ideal. If you use .net framework 4, then librar

Re: devcloud - new version (0.2) ready for testing

2014-02-24 Thread Ian Duffy
Hi Chris, Started testing this but the box was very slow to download averaging 282k/s Any chance of pushing the images into the "releases" section on github or the gh-pages branch to allow direct and faster downloading (5.0 MB/s average for me) from github's cdn? Like this project does: https://

Re: [PROPOSAL] Windowsfication Of ACS

2014-02-24 Thread Abhinandan Prateek
Yes, that is one of the objective to make MS not dependant on cygwin or any other windows tools and utilities. The bash scripts are all converted to Python. -abhi On 25/02/14 12:06 am, "Alex Huang" wrote: >One additional requirement I have would be don't use any windows >components that don't

RE: developers and mysql

2014-02-24 Thread Alex Huang
Hugo, I understand removing mysql jar during compile time by switching the scope to 'provided', but I don't understand why it's necessary to remove it from jetty run and deploy db. In a normal build, these two targets are not run. They're just convenience targets. --Alex > -Original Mes

RE: Yet another mail on code quality

2014-02-24 Thread Alex Huang
I think we should just revert the commits on problems. It actually helps the developers because it gives them a chance to redo it in the correct way and hopefully, they gain more understanding of what needs to be done. At worst, they will remember if penalized enough times. Sometimes, tough l

Re: [DISCUSS] Policy blocker?

2014-02-24 Thread Nate Gordon
Just to be thorough, is using provided scope good enough? Sure it doesn't pull it into the final product and isn't in transitive dependencies, but it is still downloaded for the compile process. From your previous emails, it sounded like we can not download it whatsoever during the build. Building

Re: Event Interceptor fix - contrail plugin : Review Request

2014-02-24 Thread Suresh Balineni
Thanks Darren. It has been checked in. Thanks, Suresh From: Darren Shepherd mailto:darren.sheph...@citrix.com>> Date: Monday, February 24, 2014 11:53 AM To: "dev@cloudstack.apache.org" mailto:dev@cloudstack.apache.org>>, Suresh Balineni mailto:sbalin...@junipe

Re: developers and mysql

2014-02-24 Thread John Kinsella
Nope. That’s the current state of things. On Feb 24, 2014, at 2:28 PM, Alena Prokharchyk mailto:alena.prokharc...@citrix.com>> wrote: Sorry, forgot to mention the steps I¹ve done: mvn install -P developer,systemvm -DskipTests cp mysql-connector-java-5.1.21.jar client/target/cloud-client-ui-4.4.

Re: [Question][Proposal] Functionality when editing a shared ACL by NetworkId

2014-02-24 Thread Chiradeep Vittal
Surely this can be done by a few well crafted API calls from CloudMonkey? On 2/24/14 4:55 AM, "Antonio Fornié Casarrubios" wrote: >Hi all, > >There is this functionality that seems to be wrong and I would like to >double check with you all. Actually this functionality could be considered >very i

Re: Review Request 18310: dnsmasq fix for bridged networks

2014-02-24 Thread Sheng Yang
Yes, it would provide extra failsafe. But the issue is if there is anything wrong, this patch may or may not prevent it. So I think it's necessary to identify the root cause first. The dhcp-range option already specified as "static" which means: The optional keyword may be static which tells d

Re: developers and mysql

2014-02-24 Thread Alena Prokharchyk
Sorry, forgot to mention the steps I¹ve done: mvn install -P developer,systemvm -DskipTests cp mysql-connector-java-5.1.21.jar client/target/cloud-client-ui-4.4.0-SNAPSHOT/WEB-INF/lib/ mvn -pl :cloud-client-ui jetty:run And I still hitting the error below. Am I missing something? Thanks, Alena.

Re: developers and mysql

2014-02-24 Thread Alena Prokharchyk
Sorry, forgot to mention the steps I¹ve done: On 2/24/14, 11:41 AM, "Alena Prokharchyk" wrote: >Hugo, fail to start latest master build on my machine, here is the error: > >ERROR [c.c.u.d.Merovingian2] (main:null) Unable to get a new db connection >java.sql.SQLException: No suitable driver foun

Re: Event Interceptor fix - contrail plugin : Review Request

2014-02-24 Thread Darren Shepherd
I'm sorry, I thought I did this weeks ago. Do you not see the commit in master? I'll double check, maybe I forgot to push. Darren From: Suresh Balineni Date: 2014-02-24 19:19:57 + To: Darren Shepherd ,dev@cloudstack.apache.org Subject: Re: Event Interc

Re: Review Request 18432: Fixed some resource files issues

2014-02-24 Thread Laszlo Hornyak
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/18432/#review35320 --- looks great - Laszlo Hornyak On Feb. 24, 2014, 5:47 p.m., Konstan

Re: Review Request 18358: NetUtils unit testing

2014-02-24 Thread Laszlo Hornyak
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/18358/#review35319 --- Verified, looks good. Daan, ok to merge? - Laszlo Hornyak On Feb

Re: developers and mysql

2014-02-24 Thread Alena Prokharchyk
Hugo, fail to start latest master build on my machine, here is the error: ERROR [c.c.u.d.Merovingian2] (main:null) Unable to get a new db connection java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost:3306/cloud?autoReconnect=true&prepStmtCacheSize=517& cachePrepStmts=true

Re: Event Interceptor fix - contrail plugin : Review Request

2014-02-24 Thread Suresh Balineni
Hi Darren, Can you please review and ship these changes (Master branch)? Without this, contrail implementation won't work. Thanks, Suresh From: Suresh Balineni mailto:sbalin...@junipernetworks.onmicrosoft.com>> Date: Monday, February 10, 2014 12:10 PM To: "dev@cloudstack.apache.org

Review Request 18433: Test Suite for Testing Remote Access VPN on VPC

2014-02-24 Thread Chandan Purushothama
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/18433/ --- Review request for cloudstack, Girish Shilamkar, sanjeev n, Santhosh Edukulla, a

Re: Yet another mail on code quality

2014-02-24 Thread Laszlo Hornyak
Hi, Guys if you feel like, look around in sonar sometimes, it registers and tracks tons of such issues (and the app is cool, nice and super-trendy) https://analysis.apache.org/dashboard/index/100206 For incorrect use of == operator, sonar knows 14 more cases in ACS, There are some that "not nice

RE: [PROPOSAL] Windowsfication Of ACS

2014-02-24 Thread Alex Huang
One additional requirement I have would be don't use any windows components that don't come with the default systems targeted. I know it sounds great to use the latest and greatest but actually the end users will have to install that and it may mess with their existing setup. In this proposal,

Re: developers and mysql

2014-02-24 Thread Hugo Trippaers
Indeed, I've been fighting with maven all day to get the development profile to include MySql. No luck yet, will give it another shot tomorrow :-) Hugo Sent from my iPhone > On 24 feb. 2014, at 18:21, David Nalley wrote: > > So it should be ok to include the jar in non-default builds. deve

Re: CLOUDSTACK-5663

2014-02-24 Thread Alena Prokharchyk
Saurav, can you please put me to the list of the Reviewers for the bug once the Reviewboard ticket is created? As for the bug, you need to be added to the Jira users DB in order to become an assignee. Whoever administers Jira, can you please do it? -Alena. On 2/24/14, 5:01 AM, "Saurav Lahiri"

Review Request 18432: Fixed some resource files issues

2014-02-24 Thread Konstantina Chremmou
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/18432/ --- Review request for cloudstack, Brian Federle and Jessica Wang. Repository: clou

RE: [PROPOSAL] Windowsfication Of ACS

2014-02-24 Thread Donal Lafferty
WiX (see http://wixtoolset.org/) > -Original Message- > From: Abhinandan Prateek [mailto:abhinandan.prat...@citrix.com] > Sent: 24 February 2014 12:11 > To: dev@cloudstack.apache.org > Subject: Re: [PROPOSAL] Windowsfication Of ACS > > Anyone, is there an open source windows installer t

Re: developers and mysql

2014-02-24 Thread David Nalley
So it should be ok to include the jar in non-default builds. developer and deploydb are not what we'd expect a normal user to consume. (Anyone else's head spinning?) --David On Mon, Feb 24, 2014 at 11:44 AM, John Kinsella wrote: > I created CLOUDSTACK-6157 over the weekend to track this. Not sur

devcloud - new version (0.2) ready for testing

2014-02-24 Thread chris snow
There is a new version of devcloud (version 0.2) ready for testing. The main change in this version is an upgrade to debian 7.4 and fix for issue 14 [1] Instructions for running the vagrant box are here [2]. This release has an issue with nfs [3]. Suggestions welcome for fixing the issue. Plea

Re: [PROPOSAL] Change systemvm template URL in master to s3 bucket

2014-02-24 Thread John Kinsella
Who’s paying for the s3 storage (sorry if I missed something there)? How long do you keep old images? Vaguely related - I was pondering seeding ACS and/or VM image torrents - wonder if folks would be interested in that? I realize bittorrent isn’t always welcome in corp environments... On Feb 2

Re: Review Request 17843: CLOUDSTACK-6058: Update the java binding used to the latest one that came with XenServer 6.2 sp1

2014-02-24 Thread Sanjay Tripathi
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/17843/ --- (Updated Feb. 24, 2014, 5:07 p.m.) Review request for cloudstack, Alex Huang, D

Re: [Discuss] GRE Tunnel issue on XenServer 6.2

2014-02-24 Thread Nguyen Anh Tu
Murali, This patch worked but not perfect. It can skip throwing exeption when plugging Dom0's VIF to network but actually the bridge is still not recognized from HOSTs. Everything is done if we plug a DomU's VIF instead. I don't know why. --Tuna On Mon, Feb 24, 2014 at 7:18 PM, Murali Reddy wro

Re: developers and mysql

2014-02-24 Thread John Kinsella
I created CLOUDSTACK-6157 over the weekend to track this. Not sure adding the jar after compile will help the deploydb target, but will give it a try this morning. Could we set up the pom.xmls to use the jar for execution if it’s found in the user/system classpaths while respecting the legal re

Re: OVS plugin in CloudStack 4.3.0

2014-02-24 Thread Nguyen Anh Tu
On Mon, Feb 24, 2014 at 7:01 PM, Murali Reddy wrote: > Opened UI bug for 4.3 CLOUDSTACK-6162 if some one can help fixing the UI > part. > Murali, We'll get it in the end of February, I promise! --Tuna

Re: [PROPOSAL] Windowsfication Of ACS

2014-02-24 Thread David Nalley
Perhaps worth looking at what AOO is using. They clearly make use of a Windows installer. --David On Mon, Feb 24, 2014 at 7:10 AM, Abhinandan Prateek wrote: > Anyone, is there an open source windows installer tool ? > > -abhi > > > > On 21/02/14 2:30 pm, "Donal Lafferty" wrote: > >>I prefer the

Yet another mail on code quality

2014-02-24 Thread Hugo Trippaers
Guys, Please pay attention to the code you are committing. Today i fixed a number of issues that were introduced in recent code, these are bugs that could have been prevented from entering master by either testing or running the findbugs checks. One was committed directly, the other one through

RE: developers and mysql

2014-02-24 Thread Rayees Namathponnan
Hi Hugo, How about making below changes in cloud.spec file ? #1) Requires: nfs-utils Requires: wget # mysql-connector 5.1.29 will be installed before installing management server Requires: mysql-connector-java = 5.1.29 #2) # Don't package the scripts in the management webapp rm -rf ${RPM_BUIL

RE: [PROPOSAL] Change systemvm template URL in master to s3 bucket

2014-02-24 Thread Rayees Namathponnan
Hi Hugo, This is only for master alone always or will be making the same for next current release ie 4.4? Regards, Rayees -Original Message- From: Trippie [mailto:trip...@gmail.com] On Behalf Of Hugo Trippaers Sent: Monday, February 24, 2014 1:51 AM To: Subject: [PROPOSAL] Change syst

Re: [DISCUSS] Policy blocker?

2014-02-24 Thread Hugo Trippaers
Guys, I did a quick check using the scanner at http://www.sonatype.com/application-health-check. According to that report we need to do some additional checking of our dependencies. Licenses: Copyleft: 2 Non-standard: 9 Weak-copyleft: 15 Liberal: 82 I can’t get the exact details as t

developers and mysql

2014-02-24 Thread Hugo Trippaers
Heya, as the mysql dependency is now set to provided in all the poms to fix our license compliancy the jetty target and the deployed targets are not working. I’m trying to configure an optional profile to enable those targets to include the mysql dependency while executing, but so far no luck.

RE: [PROPOSAL] Windowsfication Of ACS

2014-02-24 Thread Alex Hitchins
I've used the Nullsoft installer a long time ago, looks like it's still about. http://nsis.sourceforge.net/Main_Page I can't comment on it as it's a long, long time since I used it. Regards Alex Hitchins D: +44 1892 523 587 | S: +44 2036 030 540 | M: +44 7788 423 969 alex.hitch...@shapeblue.

Re: Review Request 16385: Fix for CloudStack JIRA 4406

2014-02-24 Thread daan Hoogland
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/16385/#review35276 --- I'll download and money test. please adjust the description to indic

Review Request 17995: Added fix for CLOUDSTACK - 6164

2014-02-24 Thread Santhosh Edukulla
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/17995/ --- Review request for cloudstack and Girish Shilamkar. Bugs: CLOUDSTACK-6164 h

Re: Review Request 16385: Fix for CloudStack JIRA 4406

2014-02-24 Thread Mandar Barve
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/16385/ --- (Updated Feb. 24, 2014, 2:38 p.m.) Review request for cloudstack and daan Hoogl

Re: Review Request 16385: Fix for CloudStack JIRA 4406

2014-02-24 Thread Mandar Barve
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/16385/ --- (Updated Feb. 24, 2014, 2:37 p.m.) Review request for cloudstack and daan Hoogl

Re: Review Request 18352: CLOUDSTACK-6151: Local data disk with tag goes to the wrong local storage pool

2014-02-24 Thread Saksham Srivastava
> On Feb. 24, 2014, 7:10 a.m., Koushik Das wrote: > > engine/schema/src/org/apache/cloudstack/storage/datastore/db/PrimaryDataStoreDao.java, > > line 118 > > > > > > If you specify the host then you don't need dc, pod

unable to deploy ubuntu as guest vm

2014-02-24 Thread Tejas Gadaria
Hi, I am using CS 4.0.2 with basic zone, xenserver (6.0.2) as hypervisor. I am able to deploy Windows 7 vm from ISO but not ubuntu. Also I tried to deploy centOS 5 from ISO, where graphics doesn't supports. Any help would be appreciated. 2014-02-24 17:33:17,601 DEBUG [xen.resource.CitrixResour

Re: Review Request 18419: Added changes related to CLOUDSTACK-6160

2014-02-24 Thread Girish Shilamkar
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/18419/#review35273 --- Ship it! Ship It! - Girish Shilamkar On Feb. 24, 2014, 10:53 a.m

Re: Review Request 18413: Added fix for CLOUDSTACK-6158

2014-02-24 Thread ASF Subversion and Git Services
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/18413/#review35271 --- Commit d06f2b6a70f4ed399f6edddef82b7cae81d0b71a in cloudstack's bran

Re: Review Request 18419: Added changes related to CLOUDSTACK-6160

2014-02-24 Thread ASF Subversion and Git Services
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/18419/#review35272 --- Commit bf77e9d66931468e785ca48222a564abf557fad7 in cloudstack's bran

Re: Review Request 18413: Added fix for CLOUDSTACK-6158

2014-02-24 Thread Girish Shilamkar
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/18413/#review35270 --- Ship it! Ship It! - Girish Shilamkar On Feb. 23, 2014, 5:03 p.m.

CLOUDSTACK-5663

2014-02-24 Thread Saurav Lahiri
Hi All, I started looking at https://issues.apache.org/jira/browse/CLOUDSTACK-5663 If anybody is actively looking into this please let me know else i can continue with this. Parth It looks like it is hitting the code path for non shared networks.You have mentioned that you are using shared netw

[Question][Proposal] Functionality when editing a shared ACL by NetworkId

2014-02-24 Thread Antonio Fornié Casarrubios
Hi all, There is this functionality that seems to be wrong and I would like to double check with you all. Actually this functionality could be considered very important so I appreciate collaboration. It's about the functionality for ACLs shared among networks. Let's say you have a VPC with Networ

Re: [Discuss] GRE Tunnel issue on XenServer 6.2

2014-02-24 Thread Murali Reddy
Problem is just creating network does not create bridge apparently on XenServer as the comments on 'enableXenServerNetwork' method indicate. So when findOrCreateTunnelNetwork is called to see if the network exists, since network object is present across cluster function just returns but bridge i

Re: [PROPOSAL] Windowsfication Of ACS

2014-02-24 Thread Abhinandan Prateek
Anyone, is there an open source windows installer tool ? -abhi On 21/02/14 2:30 pm, "Donal Lafferty" wrote: >I prefer the focus on support that comes with David's suggestion. >Targeting the latest stable release for a new platform greatly reduces >the number of permutations to test. > >Pursui

Re: OVS plugin in CloudStack 4.3.0

2014-02-24 Thread Murali Reddy
Opened UI bug for 4.3 CLOUDSTACK-6162 if some one can help fixing the UI part. On 24/02/14 1:30 AM, "Florin Dumitrascu" wrote: >Hi everyone, > >Following Murali's guideline, I was able to use GRE with 4.3 RC (and >XenServer 6.1) >There are actually 3 APIs one needs to invoke and I show the exam

[PROPOSAL] distributed routing and network ACL with OVS plug-in

2014-02-24 Thread Murali Reddy
I would like to propose an enhancement to OVS plug-in to support distributed routing and network ACL's for 4.4. Tracking bug is [1] and functional specification is available at [2]. This proposal is complementary to proposed reason level VPC feature [3][4] to avoid traffic trombone [5] problem. Pl

RE: [PROPOSAL] Change systemvm template URL in master to s3 bucket

2014-02-24 Thread Rajesh Battala
Awesome +1 This is very nice Any plans to update urls in DB also? Thanks Rajesh Battala -Original Message- From: Trippie [mailto:trip...@gmail.com] On Behalf Of Hugo Trippaers Sent: Monday, February 24, 2014 3:21 PM To: Subject: [PROPOSAL] Change systemvm template URL in master to

Re: [PROPOSAL] Change systemvm template URL in master to s3 bucket

2014-02-24 Thread Prasanna Santhanam
On Mon, Feb 24, 2014 at 10:51:05AM +0100, Hugo Trippaers wrote: > Hey all, > > I?ve finally fixed the configuration to automagically upload the systemvm > templates to an s3 bucket. The jobs build-systemvm-master and > build-systemvm64-master will rebuild the systemvm template on a daily basis

Review Request 18419: Added changes related to CLOUDSTACK-6160

2014-02-24 Thread Santhosh Edukulla
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/18419/ --- Review request for cloudstack and Girish Shilamkar. Bugs: CLOUDSTACK-6160 h

ACS + KVM + GRE + Infiniband

2014-02-24 Thread Andrei Mikhailovsky
Hello guys, I was wondering if anyone could give me some tips on how to setup an infinband network for the guests using KVM hypervisor. In particular,, I am looking at providing guest vms with the IPoIB interface which is available on the KVM hypervisor hosts. The current implementation of I

Re: Review Request 17843: CLOUDSTACK-6058: Update the java binding used to the latest one that came with XenServer 6.2 sp1

2014-02-24 Thread Hugo Trippaers
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/17843/#review35264 --- Before we commit this, can you have a look at these two remarks? d

Re: Review Request 17843: CLOUDSTACK-6058: Update the java binding used to the latest one that came with XenServer 6.2 sp1

2014-02-24 Thread Hugo Trippaers
> On Feb. 19, 2014, 9:27 p.m., Hugo Trippaers wrote: > > It looks like a lot of the license headers are wrong in this file. Please > > make sure they are complying to the license headers as they should be for > > CloudStack code. See the LICENSE.header file for examples, especially the > > cop

Re: Review Request 17843: CLOUDSTACK-6058: Update the java binding used to the latest one that came with XenServer 6.2 sp1

2014-02-24 Thread Sanjay Tripathi
> On Feb. 19, 2014, 9:27 p.m., Hugo Trippaers wrote: > > It looks like a lot of the license headers are wrong in this file. Please > > make sure they are complying to the license headers as they should be for > > CloudStack code. See the LICENSE.header file for examples, especially the > > cop

Re: [PROPOSAL] Change systemvm template URL in master to s3 bucket

2014-02-24 Thread Sebastien Goasguen
On Feb 24, 2014, at 4:51 AM, Hugo Trippaers wrote: > Hey all, > > I’ve finally fixed the configuration to automagically upload the systemvm > templates to an s3 bucket. The jobs build-systemvm-master and > build-systemvm64-master will rebuild the systemvm template on a daily basis > and send

[PROPOSAL] Change systemvm template URL in master to s3 bucket

2014-02-24 Thread Hugo Trippaers
Hey all, I’ve finally fixed the configuration to automagically upload the systemvm templates to an s3 bucket. The jobs build-systemvm-master and build-systemvm64-master will rebuild the systemvm template on a daily basis and send the resulting files to that S3 bucket. I would like to update th

Re: Review Request 16867: Test Suite for Testing Remote Access VPN on VPC

2014-02-24 Thread Santhosh Edukulla
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/16867/#review35259 --- Ship it! Ship It! - Santhosh Edukulla On Feb. 21, 2014, 11:52 p.

[JENKINS] Upgraded Jenkins to 1.551

2014-02-24 Thread Hugo Trippaers
This release fixes several critical security vulnerabilities. Cheers, Hugo

devcloud - can't mount 192.168.56.10:/opt/storage/secondary/template/tmpl/1/1

2014-02-24 Thread chris snow
I've fixed one issue with the new devcloud environment that I'm working on, but I'm now running into another issue when running python ../marvin/marvin/deployDataCenter.py -i devcloud.cfg WARN [c.c.h.x.r.XenServerStorageProcessor] (DirectAgent-5:ctx-c5ad1fa5) can't mount 192.168.56.10:/opt/storag