[GitHub] rhtyd commented on issue #2232: CLOUDSTACK-10040 Upload volume fails when management server can not r?

2017-09-11 Thread git
rhtyd commented on issue #2232: CLOUDSTACK-10040 Upload volume fails when 
management server can not r?
URL: https://github.com/apache/cloudstack/pull/2232#issuecomment-328734758
 
 
   @yvsubhash yes, let's wait by end of week and merge this if @DaanHoogland 
@borisstoyanov don't reply.
   @DaanHoogland -- please see these changes, they are similar to your PR.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] yvsubhash commented on issue #2232: CLOUDSTACK-10040 Upload volume fails when management server can not r?

2017-09-11 Thread git
yvsubhash commented on issue #2232: CLOUDSTACK-10040 Upload volume fails when 
management server can not r?
URL: https://github.com/apache/cloudstack/pull/2232#issuecomment-328733846
 
 
   @rhtyd  Can we assume this is merge ready as there are no comments from 
@DaanHoogland  and others
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] GabrielBrascher commented on issue #2252: CLOUDSTACK-10067: Fix a case where a user 'ro' or 'roo' exists on the system

2017-09-11 Thread git
GabrielBrascher commented on issue #2252: CLOUDSTACK-10067: Fix a case where a 
user 'ro' or 'roo' exists on the system
URL: https://github.com/apache/cloudstack/pull/2252#issuecomment-328633302
 
 
   The code LGTM.
   Can you please 'force push' to run Travis CI again? Thanks, @larstobi.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] larstobi commented on a change in pull request #2252: CLOUDSTACK-10067: Fix a case where a user 'ro' or 'roo' exists on the system

2017-09-11 Thread git
larstobi commented on a change in pull request #2252: CLOUDSTACK-10067: Fix a 
case where a user 'ro' or 'roo' exists on the system
URL: https://github.com/apache/cloudstack/pull/2252#discussion_r138061475
 
 

 ##
 File path: setup/bindir/cloud-set-guest-sshkey-configdrive.in
 ##
 @@ -84,7 +84,7 @@ else
 exit 1
 fi
 
-homedir=$(grep ^$user /etc/passwd|awk -F ":" '{print $6}')
+homedir=$(etent passwd $user|awk -F ":" '{print $6}')
 
 Review comment:
   Thanks, fixed.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] remibergsma commented on a change in pull request #2252: CLOUDSTACK-10067: Fix a case where a user 'ro' or 'roo' exists on the system

2017-09-11 Thread git
remibergsma commented on a change in pull request #2252: CLOUDSTACK-10067: Fix 
a case where a user 'ro' or 'roo' exists on the system
URL: https://github.com/apache/cloudstack/pull/2252#discussion_r138053862
 
 

 ##
 File path: setup/bindir/cloud-set-guest-sshkey-configdrive.in
 ##
 @@ -84,7 +84,7 @@ else
 exit 1
 fi
 
-homedir=$(grep ^$user /etc/passwd|awk -F ":" '{print $6}')
+homedir=$(etent passwd $user|awk -F ":" '{print $6}')
 
 Review comment:
   Shouldn't that be `getent`?
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] PranaliM commented on issue #2244: CLOUDSTACK-10054:Volume download times out in 3600 seconds

2017-09-11 Thread git
PranaliM commented on issue #2244: CLOUDSTACK-10054:Volume download times out 
in 3600 seconds
URL: https://github.com/apache/cloudstack/pull/2244#issuecomment-328495966
 
 
   A similar issue exists for Volume Upload - 
   
   **Description** : Large VmWare Volumes (of the order of 300GB or more) fail 
to upload.
   **Root Cause**: The OVA file is untarred during volume upload operation. The 
timeout for this operation is hard-coded to 3600 secs. This timeout is not 
enough for the untar operation to complete in case of large volume, because of 
which it times-out.
   **Solution**: The global parameter named 'vmware.package.ova.timeout' which 
is added in this MR to address similar issue in case of volume download, is 
re-used in case of Volume uploads and is applicable to both Uploads - URL based 
Remote upload as well as Local uploads.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[cloudstack] branch master updated: CLOUDSTACK-9963 Root Disk controller value is changing while migrating VM

2017-09-11 Thread sateesh
This is an automated email from the ASF dual-hosted git repository.

sateesh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/master by this push:
 new 48fa206  CLOUDSTACK-9963 Root Disk controller value is changing while 
migrating VM
48fa206 is described below

commit 48fa20698e92dc60004cbc97aa9c909f05982121
Author: vedulasantosh 
AuthorDate: Thu Jun 15 11:37:58 2017 +0530

CLOUDSTACK-9963 Root Disk controller value is changing while migrating VM
---
 .../hypervisor/vmware/resource/VmwareResource.java |   2 +-
 .../hypervisor/vmware/mo/VirtualMachineMO.java |  43 +++-
 .../hypervisor/vmware/mo/VirtualMachineMOTest.java | 120 +
 3 files changed, 163 insertions(+), 2 deletions(-)

diff --git 
a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java
 
b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java
index 142d341..b8a3495 100644
--- 
a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java
+++ 
b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java
@@ -1518,7 +1518,7 @@ public class VmwareResource implements 
StoragePoolResource, ServerResource, Vmwa
 } else if (DiskControllerType.getType(scsiDiskController) == 
DiskControllerType.buslogic) {
 vmMo.ensureBusLogicDeviceControllers(requiredNumScsiControllers, 
availableBusNum);
 } else if (DiskControllerType.getType(scsiDiskController) == 
DiskControllerType.lsilogic) {
-vmMo.ensureScsiDeviceControllers(requiredNumScsiControllers, 
availableBusNum);
+vmMo.ensureLsiLogicDeviceControllers(requiredNumScsiControllers, 
availableBusNum);
 }
 }
 
diff --git 
a/vmware-base/src/com/cloud/hypervisor/vmware/mo/VirtualMachineMO.java 
b/vmware-base/src/com/cloud/hypervisor/vmware/mo/VirtualMachineMO.java
index 3cf3ad1..c7bdbcd 100644
--- a/vmware-base/src/com/cloud/hypervisor/vmware/mo/VirtualMachineMO.java
+++ b/vmware-base/src/com/cloud/hypervisor/vmware/mo/VirtualMachineMO.java
@@ -2220,7 +2220,48 @@ public class VirtualMachineMO extends BaseMO {
 
 if(devices != null && devices.size() > 0) {
 for(VirtualDevice device : devices) {
-if(device instanceof VirtualLsiLogicController) {
+if(device instanceof VirtualSCSIController) {
+return device.getKey();
+}
+}
+}
+
+return -1;
+}
+
+public void ensureLsiLogicDeviceControllers(int count, int 
availableBusNum) throws Exception {
+int scsiControllerKey = getLsiLogicDeviceControllerKeyNoException();
+if (scsiControllerKey < 0) {
+VirtualMachineConfigSpec vmConfig = new VirtualMachineConfigSpec();
+
+int busNum = availableBusNum;
+while (busNum < count) {
+VirtualLsiLogicController scsiController = new 
VirtualLsiLogicController();
+scsiController.setSharedBus(VirtualSCSISharing.NO_SHARING);
+scsiController.setBusNumber(busNum);
+scsiController.setKey(busNum - 
VmwareHelper.MAX_SCSI_CONTROLLER_COUNT);
+VirtualDeviceConfigSpec scsiControllerSpec = new 
VirtualDeviceConfigSpec();
+scsiControllerSpec.setDevice(scsiController);
+
scsiControllerSpec.setOperation(VirtualDeviceConfigSpecOperation.ADD);
+
+vmConfig.getDeviceChange().add(scsiControllerSpec);
+busNum++;
+}
+if (configureVm(vmConfig)) {
+throw new Exception("Unable to add Lsi Logic controllers to 
the VM " + getName());
+} else {
+s_logger.info("Successfully added " + count + " LsiLogic 
Parallel SCSI controllers.");
+}
+}
+}
+
+private int getLsiLogicDeviceControllerKeyNoException() throws Exception {
+List devices = 
(List)_context.getVimClient().
+getDynamicProperty(_mor, "config.hardware.device");
+
+if (devices != null && devices.size() > 0) {
+for (VirtualDevice device : devices) {
+if (device instanceof VirtualLsiLogicController) {
 return device.getKey();
 }
 }
diff --git 
a/vmware-base/test/com/cloud/hypervisor/vmware/mo/VirtualMachineMOTest.java 
b/vmware-base/test/com/cloud/hypervisor/vmware/mo/VirtualMachineMOTest.java
new file mode 100644
index 000..0e61b59
--- /dev/null
+++ b/vmware-base/test/com/cloud/hypervisor/vmware/mo/VirtualMachineMOTest.java
@@ -0,0 +1,120 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright 

[GitHub] sateesh-chodapuneedi closed pull request #2148: CLOUDSTACK-9963 Root Disk controller value is changing while migrating VM

2017-09-11 Thread git
sateesh-chodapuneedi closed pull request #2148: CLOUDSTACK-9963 Root Disk 
controller value is changing while migrating VM
URL: https://github.com/apache/cloudstack/pull/2148
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] sateesh-chodapuneedi commented on issue #2148: CLOUDSTACK-9963 Root Disk controller value is changing while migrating VM

2017-09-11 Thread git
sateesh-chodapuneedi commented on issue #2148: CLOUDSTACK-9963 Root Disk 
controller value is changing while migrating VM
URL: https://github.com/apache/cloudstack/pull/2148#issuecomment-328493451
 
 
   Merging this based on code LGTMs, and test LGTMs from @borisstoyanov and 
@SowjanyaPatha 
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] borisstoyanov commented on issue #2261: CLOUDSTACK-10068 - Fixing test_iso.py assertions are equating srt and?

2017-09-11 Thread git
borisstoyanov commented on issue #2261: CLOUDSTACK-10068 - Fixing test_iso.py 
assertions are equating srt and?
URL: https://github.com/apache/cloudstack/pull/2261#issuecomment-328484249
 
 
   Agree with you @rhtyd, I was just wondering if that would ring any bell with 
others...
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] yvsubhash commented on issue #1940: CLOUDSTACK-9781:ACS records ID in events tables instead of UUID.

2017-09-11 Thread git
yvsubhash commented on issue #1940: CLOUDSTACK-9781:ACS records ID in events 
tables instead of UUID.
URL: https://github.com/apache/cloudstack/pull/1940#issuecomment-328450728
 
 
   @rhtyd  Queries os Daan are already answered. Do you see open questions here?
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd commented on a change in pull request #2261: CLOUDSTACK-10068 - Fixing test_iso.py assertions are equating srt and?

2017-09-11 Thread git
rhtyd commented on a change in pull request #2261: CLOUDSTACK-10068 - Fixing 
test_iso.py assertions are equating srt and?
URL: https://github.com/apache/cloudstack/pull/2261#discussion_r137998114
 
 

 ##
 File path: test/integration/smoke/test_iso.py
 ##
 @@ -320,8 +320,8 @@ def test_02_edit_iso(self):
 "Check display text of updated ISO"
 )
 self.assertEqual(
-iso_response.bootable,
-self.services["bootable"],
+str(iso_response.bootable).lower(),
 
 Review comment:
   I don't have any idea, where/how it may change. LGTM, I think we can merge 
this and revisit later if needed.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd commented on issue #2261: CLOUDSTACK-10068 - Fixing test_iso.py assertions are equating srt and?

2017-09-11 Thread git
rhtyd commented on issue #2261: CLOUDSTACK-10068 - Fixing test_iso.py 
assertions are equating srt and?
URL: https://github.com/apache/cloudstack/pull/2261#issuecomment-328443835
 
 
   LGTM, let's merge this.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[cloudstack] branch master updated (f2cb218 -> a6b41c1)

2017-09-11 Thread bhaisaab
This is an automated email from the ASF dual-hosted git repository.

bhaisaab pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack.git.


from f2cb218  Merge branch '4.10'
 add 85e57d1  CLOUDSTACK-10069: Add sha512 suffix to SHA 512 checksum 
(#2262)
 add a90b600  Merge branch '4.9' into 4.10
 new a6b41c1  Merge branch '4.10'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 tools/build/build_asf.sh | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cloudstack.apache.org" '].


[cloudstack] 01/01: Merge branch '4.10'

2017-09-11 Thread bhaisaab
This is an automated email from the ASF dual-hosted git repository.

bhaisaab pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack.git

commit a6b41c10c60f255f715de527b4a60be34f685f75
Merge: f2cb218 a90b600
Author: Rohit Yadav 
AuthorDate: Mon Sep 11 12:41:43 2017 +0530

Merge branch '4.10'

 tools/build/build_asf.sh | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
"commits@cloudstack.apache.org" .


[cloudstack] branch 4.9 updated: CLOUDSTACK-10069: Add sha512 suffix to SHA 512 checksum (#2262)

2017-09-11 Thread bhaisaab
This is an automated email from the ASF dual-hosted git repository.

bhaisaab pushed a commit to branch 4.9
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/4.9 by this push:
 new 85e57d1  CLOUDSTACK-10069: Add sha512 suffix to SHA 512 checksum 
(#2262)
85e57d1 is described below

commit 85e57d11551bdf34359b8d509f3337d0ca365805
Author: Rohit Yadav 
AuthorDate: Mon Sep 11 12:40:06 2017 +0530

CLOUDSTACK-10069: Add sha512 suffix to SHA 512 checksum (#2262)

Per http://www.apache.org/dev/release-distribution#sigs-and-sums
This will add `.sha512` to the SHA 512 checksum file in the
release/candidate tarball.

Signed-off-by: Rohit Yadav 
---
 tools/build/build_asf.sh | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tools/build/build_asf.sh b/tools/build/build_asf.sh
index 75eac69..2f9a472 100755
--- a/tools/build/build_asf.sh
+++ b/tools/build/build_asf.sh
@@ -154,8 +154,8 @@ fi
 echo 'md5'
 gpg -v --print-md MD5 apache-cloudstack-$version-src.tar.bz2 > 
apache-cloudstack-$version-src.tar.bz2.md5
 
-echo 'sha'
-gpg -v --print-md SHA512 apache-cloudstack-$version-src.tar.bz2 > 
apache-cloudstack-$version-src.tar.bz2.sha
+echo 'sha512'
+gpg -v --print-md SHA512 apache-cloudstack-$version-src.tar.bz2 > 
apache-cloudstack-$version-src.tar.bz2.sha512
 
 echo 'verify'
 gpg -v --verify apache-cloudstack-$version-src.tar.bz2.asc 
apache-cloudstack-$version-src.tar.bz2
@@ -187,11 +187,11 @@ if [ "$committosvn" == "yes" ]; then
   cp $outputdir/apache-cloudstack-$version-src.tar.bz2 .
   cp $outputdir/apache-cloudstack-$version-src.tar.bz2.asc .
   cp $outputdir/apache-cloudstack-$version-src.tar.bz2.md5 .
-  cp $outputdir/apache-cloudstack-$version-src.tar.bz2.sha .
+  cp $outputdir/apache-cloudstack-$version-src.tar.bz2.sha512 .
   svn add apache-cloudstack-$version-src.tar.bz2
   svn add apache-cloudstack-$version-src.tar.bz2.asc
   svn add apache-cloudstack-$version-src.tar.bz2.md5
-  svn add apache-cloudstack-$version-src.tar.bz2.sha
+  svn add apache-cloudstack-$version-src.tar.bz2.sha512
   svn commit -m "Committing release candidate artifacts for $version to 
dist/dev/cloudstack in preparation for release vote"
 fi
 

-- 
To stop receiving notification emails like this one, please contact
['"commits@cloudstack.apache.org" '].


[cloudstack-www] 02/02: update website for 4.9.3.0 release

2017-09-11 Thread bhaisaab
This is an automated email from the ASF dual-hosted git repository.

bhaisaab pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/cloudstack-www.git

commit f2bd2c421e2f3c47dec110d51ceaf48eb69d80b8
Author: Rohit Yadav 
AuthorDate: Mon Sep 11 12:07:23 2017 +0530

update website for 4.9.3.0 release

Signed-off-by: Rohit Yadav 
---
 content/archives.html  |  6 ++
 content/downloads.html | 18 +-
 2 files changed, 15 insertions(+), 9 deletions(-)

diff --git a/content/archives.html b/content/archives.html
index 13443fd..e6c5699 100644
--- a/content/archives.html
+++ b/content/archives.html
@@ -127,8 +127,14 @@
 Archived Releases
 
 
+  4.10
+
+  http://archive.apache.org/dist/cloudstack/releases/4.10.0.0/apache-cloudstack-4.10.0.0-src.tar.bz2;>apache-cloudstack-4.10.0.0.src.tar.bz2
 [ http://archive.apache.org/dist/cloudstack/releases/4.10.0.0/apache-cloudstack-4.10.0.0-src.tar.bz2.asc;>PGP
 ][ http://archive.apache.org/dist/cloudstack/releases/4.10.0.0/apache-cloudstack-4.10.0.0-src.tar.bz2.md5;>MD5
 ][ http://archive.apache.org/dist/cloudstack/releases/4.10.0.0/apache-clou 
[...]
+
+  
   4.9
 
+  http://archive.apache.org/dist/cloudstack/releases/4.9.3.0/apache-cloudstack-4.9.3.0-src.tar.bz2;>apache-cloudstack-4.9.3.0.src.tar.bz2
 [ http://archive.apache.org/dist/cloudstack/releases/4.9.3.0/apache-cloudstack-4.9.3.0-src.tar.bz2.asc;>PGP
 ][ http://archive.apache.org/dist/cloudstack/releases/4.9.3.0/apache-cloudstack-4.9.3.0-src.tar.bz2.md5;>MD5
 ][ http://archive.apache.org/dist/cloudstack/releases/4.9.3.0/apache-cloudstack-4
 [...]
   http://archive.apache.org/dist/cloudstack/releases/4.9.2.0/apache-cloudstack-4.9.2.0-src.tar.bz2;>apache-cloudstack-4.9.2.0.src.tar.bz2
 [ http://archive.apache.org/dist/cloudstack/releases/4.9.2.0/apache-cloudstack-4.9.2.0-src.tar.bz2.asc;>PGP
 ][ http://archive.apache.org/dist/cloudstack/releases/4.9.2.0/apache-cloudstack-4.9.2.0-src.tar.bz2.md5;>MD5
 ][ http://archive.apache.org/dist/cloudstack/releases/4.9.2.0/apache-cloudstack-4
 [...]
   http://archive.apache.org/dist/cloudstack/releases/4.9.1.0/apache-cloudstack-4.9.1.0-src.tar.bz2;>apache-cloudstack-4.9.1.0.src.tar.bz2
 [ http://archive.apache.org/dist/cloudstack/releases/4.9.1.0/apache-cloudstack-4.9.1.0-src.tar.bz2.asc;>PGP
 ][ http://archive.apache.org/dist/cloudstack/releases/4.9.1.0/apache-cloudstack-4.9.1.0-src.tar.bz2.md5;>MD5
 ][ http://archive.apache.org/dist/cloudstack/releases/4.9.1.0/apache-cloudstack-4
 [...]
   http://archive.apache.org/dist/cloudstack/releases/4.9.0.1/apache-cloudstack-4.9.0.1-src.tar.bz2;>apache-cloudstack-4.9.0.1.src.tar.bz2
 [ http://archive.apache.org/dist/cloudstack/releases/4.9.0.1/apache-cloudstack-4.9.0.1-src.tar.bz2.asc;>PGP
 ][ http://archive.apache.org/dist/cloudstack/releases/4.9.0.1/apache-cloudstack-4.9.0.1-src.tar.bz2.md5;>MD5
 ][ http://archive.apache.org/dist/cloudstack/releases/4.9.0.1/apache-cloudstack-4
 [...]
diff --git a/content/downloads.html b/content/downloads.html
index 8f8c607..7f62b98 100644
--- a/content/downloads.html
+++ b/content/downloads.html
@@ -172,17 +172,17 @@
 MD5
 
 
-http://www.apache.org/dist/cloudstack/releases/4.10.0.0/apache-cloudstack-4.10.0.0-src.tar.bz2.sha;>
+http://www.apache.org/dist/cloudstack/releases/4.10.0.0/apache-cloudstack-4.10.0.0-src.tar.bz2.sha512;>
 
-SHA
+SHA512
 
 
 
 
 
-http://www.apache.org/dyn/closer.lua/cloudstack/releases/4.9.2.0/apache-cloudstack-4.9.2.0-src.tar.bz2;>
+http://www.apache.org/dyn/closer.lua/cloudstack/releases/4.9.3.0/apache-cloudstack-4.9.3.0-src.tar.bz2;>
 
-Get the 4.9.2.0 Source!
+Get the 4.9.3.0 Source!
 
 
 http://www.apache.org/dist/cloudstack/KEYS;>
@@ -190,19 +190,19 @@
 KEYS
 
 
-http://www.apache.org/dist/cloudstack/releases/4.9.2.0/apache-cloudstack-4.9.2.0-src.tar.bz2.asc;>
+http://www.apache.org/dist/cloudstack/releases/4.9.3.0/apache-cloudstack-4.9.3.0-src.tar.bz2.asc;>
 
 PGP
 
 
-http://www.apache.org/dist/cloudstack/releases/4.9.2.0/apache-cloudstack-4.9.2.0-src.tar.bz2.md5;>
+http://www.apache.org/dist/cloudstack/releases/4.9.3.0/apache-cloudstack-4.9.3.0-src.tar.bz2.md5;>
 
 MD5
 
 
-http://www.apache.org/dist/cloudstack/releases/4.9.2.01/apache-cloudstack-4.9.2.0-src.tar.bz2.sha;>
+http://www.apache.org/dist/cloudstack/releases/4.9.3.0/apache-cloudstack-4.9.3.0-src.tar.bz2.sha512;>
 
-SHA
+SHA512
 
 
 
@@ -240,7 +240,7 @@
 Verifying Downloads
 
 
-  
+
 
 
 

-- 
To stop receiving notification emails like this one, please contact
"commits@cloudstack.apache.org" .


[cloudstack-www] branch asf-site updated (219c687 -> f2bd2c4)

2017-09-11 Thread bhaisaab
This is an automated email from the ASF dual-hosted git repository.

bhaisaab pushed a change to branch asf-site
in repository https://gitbox.apache.org/repos/asf/cloudstack-www.git.


from 219c687  Merge branch 'master' into asf-site
 add 8c801a4  update for 4.9.3.0 release
 new 33df99f  Merge branch 'master' into asf-site
 new f2bd2c4  update website for 4.9.3.0 release

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 content/archives.html   |  6 ++
 content/downloads.html  | 18 +-
 data/cloudstack.yml |  5 -
 source/downloads.md.erb | 10 +-
 4 files changed, 24 insertions(+), 15 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cloudstack.apache.org" '].


[cloudstack-www] 01/02: Merge branch 'master' into asf-site

2017-09-11 Thread bhaisaab
This is an automated email from the ASF dual-hosted git repository.

bhaisaab pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/cloudstack-www.git

commit 33df99f3d50bc0476ef20c5f9fc743b7279b77da
Merge: 219c687 8c801a4
Author: Rohit Yadav 
AuthorDate: Mon Sep 11 12:03:21 2017 +0530

Merge branch 'master' into asf-site

 data/cloudstack.yml |  5 -
 source/downloads.md.erb | 10 +-
 2 files changed, 9 insertions(+), 6 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
"commits@cloudstack.apache.org" .


[cloudstack-www] branch master updated: update for 4.9.3.0 release

2017-09-11 Thread bhaisaab
This is an automated email from the ASF dual-hosted git repository.

bhaisaab pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack-www.git


The following commit(s) were added to refs/heads/master by this push:
 new 8c801a4  update for 4.9.3.0 release
8c801a4 is described below

commit 8c801a499e03a96636eff283c8fd44adb5145aa0
Author: Rohit Yadav 
AuthorDate: Mon Sep 11 11:59:49 2017 +0530

update for 4.9.3.0 release

Signed-off-by: Rohit Yadav 
---
 data/cloudstack.yml |  5 -
 source/downloads.md.erb | 10 +-
 2 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/data/cloudstack.yml b/data/cloudstack.yml
index 184452f..fb926b8 100644
--- a/data/cloudstack.yml
+++ b/data/cloudstack.yml
@@ -2,9 +2,12 @@ versions:
   main: 4.10.0.0
   branch: 4.10
   others:
-- 4.9.2.0
+- 4.9.3.0
   archives:
+- 4.10:
+   - 4.10.0.0
 - 4.9:
+   - 4.9.3.0
- 4.9.2.0
- 4.9.1.0
- 4.9.0.1
diff --git a/source/downloads.md.erb b/source/downloads.md.erb
index f76fbec..8554a51 100644
--- a/source/downloads.md.erb
+++ b/source/downloads.md.erb
@@ -55,9 +55,9 @@ title: Apache CloudStack Downloads
 MD5
 
 
-http://www.apache.org/dist/cloudstack/releases/<%= 
data.cloudstack.versions.main %>/apache-cloudstack-<%= 
data.cloudstack.versions.main %>-src.tar.bz2.sha">
+http://www.apache.org/dist/cloudstack/releases/<%= 
data.cloudstack.versions.main %>/apache-cloudstack-<%= 
data.cloudstack.versions.main %>-src.tar.bz2.sha512">
 
-SHA
+SHA512
 
 
 
@@ -84,9 +84,9 @@ title: Apache CloudStack Downloads
 MD5
 
 
-http://www.apache.org/dist/cloudstack/releases/<%= other_version 
%>1/apache-cloudstack-<%= other_version %>-src.tar.bz2.sha">
+http://www.apache.org/dist/cloudstack/releases/<%= other_version 
%>1/apache-cloudstack-<%= other_version %>-src.tar.bz2.sha512">
 
-SHA
+SHA512
 
 
 
@@ -125,7 +125,7 @@ title: Apache CloudStack Downloads
 Verifying Downloads
 
 
-  
+
 
 
 

-- 
To stop receiving notification emails like this one, please contact
['"commits@cloudstack.apache.org" '].


svn commit: r21556 - in /release/cloudstack/releases/4.10.0.0: apache-cloudstack-4.10.0.0-src.tar.bz2.sha apache-cloudstack-4.10.0.0-src.tar.bz2.sha512

2017-09-11 Thread bhaisaab
Author: bhaisaab
Date: Mon Sep 11 06:24:54 2017
New Revision: 21556

Log:
CloudStack: Rename SHA 512 file with .sha512 suffix for 4.10.0.0

Added:

release/cloudstack/releases/4.10.0.0/apache-cloudstack-4.10.0.0-src.tar.bz2.sha512
  - copied unchanged from r21555, 
release/cloudstack/releases/4.10.0.0/apache-cloudstack-4.10.0.0-src.tar.bz2.sha
Removed:

release/cloudstack/releases/4.10.0.0/apache-cloudstack-4.10.0.0-src.tar.bz2.sha



[cloudstack-docs-rn] annotated tag 4.9.3.0 created (now b1e4fe2)

2017-09-11 Thread bhaisaab
This is an automated email from the ASF dual-hosted git repository.

bhaisaab pushed a change to annotated tag 4.9.3.0
in repository https://gitbox.apache.org/repos/asf/cloudstack-docs-rn.git.


  at b1e4fe2  (tag)
 tagging ef6c69b4d990e3e78783a378c21323d9cff4ff31 (commit)
 replaces 4.9.0
  by Rohit Yadav
  on Mon Sep 11 11:49:11 2017 +0530

- Log -
Release notes updated for 4.9.3.0
-BEGIN PGP SIGNATURE-

iQIcBAABCAAGBQJZtirpAAoJEEhCSCEO49iEZY8P/3cbt/ZORkrkC7qrmLAO8lSi
2ivCK1su7ikloYTnaaVfKzIixGI/26Tm2BSCMZuPibD0gJjfq52Ma5XOlA8PFcQM
xjGeEM9ggP4aUeQJ9cQjBDYE9/SkErC0tkb094q+hW4o7LKaJbanUDfHRAXf5npi
yvatF2YosHqPP7x5yqzixFmkaZpOf+g6ianWlKBC2gamJ4yxTeaUyMLrEPH06PlP
czoOj75FdLzOmPZ0RqY42/lbCzVkF/6aN3Uumz/SIvQetyxs69CWCu9+1pFJkfR2
MmBsPLNAC7Pv5oHdfksMUfHmEoBWkagBMzeWlt/QKmJce+h/ryxT9XaXiRvgGy3y
LwpB9qJrXX7GNnK/ZYMMwK1gc8QyfW+xIq8rQmuMyEsv8QdDfzdpZp0HgXJ1k97V
p+tIeq1IBzHg7AsK6nUV1NIhvuuKxnfLKn6Sjyqvb2Q8LAqG3G09ENUZIU45S7e1
PV/VSuZITZBaQ8npDRhPwGqpm2+H04Acs/3qIUEhUrDDH3cqTjhv+MvbJwXIDTXO
S/rZC3RumS5RkNGy2pkRbnCmJzUIJJcneYCBK9H0wfGVFyOTyNcBMCf78KKfvkec
30tqy0h4uHcZ8xQGAZNUkVSfKM4dZCKoZTXD1eeV4Hx2wY3b6TYjlnd2SQnhgMeb
mYGThSTPOktOYgqzLQB1
=IkFK
-END PGP SIGNATURE-
---

No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
['"commits@cloudstack.apache.org" '].


[cloudstack-docs-rn] branch 4.9 updated: source: update release notes for 4.9.3.0 release

2017-09-11 Thread bhaisaab
This is an automated email from the ASF dual-hosted git repository.

bhaisaab pushed a commit to branch 4.9
in repository https://gitbox.apache.org/repos/asf/cloudstack-docs-rn.git


The following commit(s) were added to refs/heads/4.9 by this push:
 new ef6c69b  source: update release notes for 4.9.3.0 release
ef6c69b is described below

commit ef6c69b4d990e3e78783a378c21323d9cff4ff31
Author: Rohit Yadav 
AuthorDate: Mon Sep 11 11:48:57 2017 +0530

source: update release notes for 4.9.3.0 release

Signed-off-by: Rohit Yadav 
---
 source/about.rst|  78 +++-
 source/api-changes.rst  |   4 +-
 source/conf.py  |   2 +-
 source/fixed_issues.rst | 311 +++-
 4 files changed, 329 insertions(+), 66 deletions(-)

diff --git a/source/about.rst b/source/about.rst
index 674c2be..6d1550e 100644
--- a/source/about.rst
+++ b/source/about.rst
@@ -17,75 +17,32 @@
 What's New in |version|
 ===
 
-Version |release| includes 180 pull requests and fixes more than 80 bugs since
-the 4.9.0 release.
+Version |release| includes more than 190 commits and 100 issue fixes since the
+4.9.2.0 release.
 
-The 4.9.2.0 is part of the LTS 4.9.x releases. The 4.9 LTS branch is supported
+The 4.9.3.0 is part of the LTS 4.9.x releases. The 4.9 LTS branch is supported
 for 20 months, and will receives updates for first 14 months and only
 security updates in its last 6 months. The 4.9 LTS branch is supported till 1
 June 2018.
 
-A LOT changed in this release, so this is not a complete list, but here is a 
-quick summary of some of the changes.
+A LOT changed_ in this release, so this is not a complete list, but here is a 
quick summary of
+some of the changes.
 
 
-Networking
---
-
-* Fixes to ACLs, S2S VPN, Private Gateways, Redundant VRs and other 
optimizations
-* Nuage VSP SDN Plugin got a lot of improvements and some new features
-
-
-Database
-
-
-* MySQL connector changed
-* DB optimizations and improvements
-
-
-Storage
+Changes
 ---
 
-* Enabled fast snapshots for managed storage using XenServer
-* Fixes for some RBD issues
-* Fixes multiple Swift object store issues
-* Improved VMware disk implementation
-
-
-Hypervisor
---
-
-* Support for XenServer 7
-* Support for VMware vSphere 6.0, 6.5
-* Support for Ubuntu 16.04 as KVM host
-
-
-Usability
--
-
-* Added user defined roles
-* Added configurable root volume size for KVM
-* Lots of localization improvements
-* Added CentOS 6.x guest OS mappings for VMware
-
-
-Operations
---
-
-* Added Out-of-band power management for hosts (EG: IPMI, iLO, DRAC, etc.)
-
-
-Miscellaneous
--
-
-* Use non-blocking SSL handshake in NioConnection/Link
-* Added memory utilization to ``listVirtualMachines``
-* Multiple fixes related to usage
-
-
-QA
---
-
+* Several VR fixes
+* Snapshot improvements
+* Fixes router aggregation timeout
+* Packaging and upgrade improvements
+* Password server speedups
+* DB optimizations and improvements
+* Support for VMware 6.5
+* Improved metrics view performance
+* Added list of router(s) in network details tab
+* Power off VM when force stop is used to stop VMs
+* Hides credentials in ``listCluster`` response
 * Higher quality releases due to better QA automation, testing and code 
reviewing
 
 Build dependency
@@ -95,3 +52,4 @@ When building Apache CloudStack with ``noredist``, it now 
require the file
 ``deps/vim25_60.jar`` available from vSphere SDK 6.0,
 VMware-vSphere-SDK-6.0.0-3634981.zip.
 
+.. _changed: https://github.com/apache/cloudstack/compare/4.9.2.0...4.9.3.0
diff --git a/source/api-changes.rst b/source/api-changes.rst
index e6ac0a9..00edab7 100644
--- a/source/api-changes.rst
+++ b/source/api-changes.rst
@@ -14,8 +14,8 @@
under the License.
 
 
-API Changes Introduced in |version|
-===
+API Changes Introduced in 4.9
+=
 
 For the complete list of API commands and params consult the `CloudStack 
Apidocs`_.
 
diff --git a/source/conf.py b/source/conf.py
index 0cb3769..0bbedc6 100644
--- a/source/conf.py
+++ b/source/conf.py
@@ -76,7 +76,7 @@ copyright = u'2016, Apache CloudStack'
 # The short X.Y version.
 version = '4.9'
 # The full version, including alpha/beta/rc tags.
-release = '4.9.2.0'
+release = '4.9.3.0'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff --git a/source/fixed_issues.rst b/source/fixed_issues.rst
index 46891be..650df4f 100644
--- a/source/fixed_issues.rst
+++ b/source/fixed_issues.rst
@@ -23,8 +23,215 @@ pull requests. All new features and bugs for |release| have 
been merged through
 Github pull requests.  A subset of these changes are tracked in Jira, which 
have a 
 standard naming convention of "CLOUDSTACK-" where "" is the issue 
number.
 
-Issues Fixed in |release|

[GitHub] blueorangutan commented on issue #2204: [CLOUDSTACK-10025] Adding Support for NoVNC Console for KVM and XENSERVER

2017-09-11 Thread git
blueorangutan commented on issue #2204: [CLOUDSTACK-10025] Adding Support for 
NoVNC Console for KVM and XENSERVER
URL: https://github.com/apache/cloudstack/pull/2204#issuecomment-328425649
 
 
   @borisstoyanov a Trillian-Jenkins test job (centos7 mgmt + kvm-centos7) has 
been kicked to run smoke tests
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] borisstoyanov commented on issue #2204: [CLOUDSTACK-10025] Adding Support for NoVNC Console for KVM and XENSERVER

2017-09-11 Thread git
borisstoyanov commented on issue #2204: [CLOUDSTACK-10025] Adding Support for 
NoVNC Console for KVM and XENSERVER
URL: https://github.com/apache/cloudstack/pull/2204#issuecomment-328425514
 
 
   @blueorangutan test
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services