[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-03-21 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16407758#comment-16407758
 ] 

ASF subversion and git services commented on CLOUDSTACK-10238:
--

Commit 6a754237797a9d2f084674da83929f66fd402368 in cloudstack's branch 
refs/heads/master from [~nicolas.vazquez]
[ https://gitbox.apache.org/repos/asf?p=cloudstack.git;h=6a75423 ]

CLOUDSTACK-10231: Asserted fixes for Direct Download on KVM (#2408)

Several fixes addressed:

- Dettach ISO fails when trying to detach a direct download ISO
- Fix for metalink support on SSVM agents (this closes CLOUDSTACK-10238)
- Reinstall VM from bypassed registered template (this closes CLOUDSTACK-10250)
- Fix upload certificate error message even though operation was successful
- Fix metalink download, checksum retry logic and metalink SSVM downloader

> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
> Fix For: 4.11.1.0
>
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-03-20 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16406356#comment-16406356
 ] 

ASF subversion and git services commented on CLOUDSTACK-10238:
--

Commit 6a754237797a9d2f084674da83929f66fd402368 in cloudstack's branch 
refs/heads/4.11 from [~nicolas.vazquez]
[ https://gitbox.apache.org/repos/asf?p=cloudstack.git;h=6a75423 ]

CLOUDSTACK-10231: Asserted fixes for Direct Download on KVM (#2408)

Several fixes addressed:

- Dettach ISO fails when trying to detach a direct download ISO
- Fix for metalink support on SSVM agents (this closes CLOUDSTACK-10238)
- Reinstall VM from bypassed registered template (this closes CLOUDSTACK-10250)
- Fix upload certificate error message even though operation was successful
- Fix metalink download, checksum retry logic and metalink SSVM downloader

> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
> Fix For: 4.11.1.0
>
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-02-18 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16368754#comment-16368754
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

nvazquez commented on issue #2411: CLOUDSTACK-10238: Fix for metalink support 
on SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411#issuecomment-366579457
 
 
   Closing as it is included on 2408


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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-02-18 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16368755#comment-16368755
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

nvazquez closed pull request #2411: CLOUDSTACK-10238: Fix for metalink support 
on SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git 
a/core/src/com/cloud/storage/template/MetalinkTemplateDownloader.java 
b/core/src/com/cloud/storage/template/MetalinkTemplateDownloader.java
index 149c6a1e826..bf898c52cd9 100644
--- a/core/src/com/cloud/storage/template/MetalinkTemplateDownloader.java
+++ b/core/src/com/cloud/storage/template/MetalinkTemplateDownloader.java
@@ -34,22 +34,41 @@ public MetalinkTemplateDownloader(StorageLayer 
storageLayer, String downloadUrl,
 super(storageLayer, downloadUrl, toDir, maxTemplateSize, callback);
 String[] parts = _downloadUrl.split("/");
 String filename = parts[parts.length - 1];
+_callback = callback;
 _toFile = toDir + File.separator + filename;
 }
 
 @Override
 public long download(boolean resume, DownloadCompleteCallback callback) {
-if (!status.equals(Status.NOT_STARTED)) {
-// Only start downloading if we haven't started yet.
-LOGGER.debug("Template download is already started, not starting 
again. Template: " + _downloadUrl);
+if (_status == Status.ABORTED || _status == Status.UNRECOVERABLE_ERROR 
|| _status == Status.DOWNLOAD_FINISHED) {
 return 0;
 }
+
+LOGGER.info("Starting metalink download from: " + _downloadUrl);
+_start = System.currentTimeMillis();
+
 status = Status.IN_PROGRESS;
 Script.runSimpleBashScript("aria2c " + _downloadUrl + " -d " + _toDir);
+String metalinkFile = _toFile;
+Script.runSimpleBashScript("rm -f " + metalinkFile);
+String templateFileName = Script.runSimpleBashScript("ls " + _toDir);
+String downloadedFile = _toDir + File.separator + templateFileName;
+_toFile = _toDir + File.separator + "tmpdownld_";
+Script.runSimpleBashScript("mv " + downloadedFile + " " + _toFile);
+
+File file = new File(_toFile);
+if (!file.exists()) {
+_status = Status.UNRECOVERABLE_ERROR;
+LOGGER.error("Error downloading template from: " + _downloadUrl);
+return 0;
+}
+_totalBytes = file.length();
 status = Status.DOWNLOAD_FINISHED;
-String sizeResult = Script.runSimpleBashScript("ls -als " + _toFile + 
" | awk '{print $1}'");
-long size = Long.parseLong(sizeResult);
-return size;
+_downloadTime = System.currentTimeMillis() - _start;
+if (_callback != null) {
+_callback.downloadComplete(status);
+}
+return _totalBytes;
 }
 
 @Override
@@ -63,4 +82,13 @@ public int getDownloadPercent() {
 }
 }
 
+@Override
+public Status getStatus() {
+return status;
+}
+
+@Override
+public void setStatus(Status status) {
+this.status = status;
+}
 }
diff --git a/utils/src/main/java/com/cloud/utils/UriUtils.java 
b/utils/src/main/java/com/cloud/utils/UriUtils.java
index d7fbb89e47e..c91c9cc307c 100644
--- a/utils/src/main/java/com/cloud/utils/UriUtils.java
+++ b/utils/src/main/java/com/cloud/utils/UriUtils.java
@@ -444,7 +444,8 @@ private static void checkFormat(String format, String 
uripath) {
 && (!uripath.toLowerCase().endsWith("ova")
 && !uripath.toLowerCase().endsWith("ova.zip")
 && !uripath.toLowerCase().endsWith("ova.bz2")
-&& !uripath.toLowerCase().endsWith("ova.gz")))
+&& !uripath.toLowerCase().endsWith("ova.gz")
+&& !uripath.toLowerCase().endsWith("metalink")))
 || (format.equalsIgnoreCase("tar")
 && (!uripath.toLowerCase().endsWith("tar")
 && !uripath.toLowerCase().endsWith("tar.zip")
@@ -468,7 +469,8 @@ private static void checkFormat(String format, String 
uripath) {
 && (!uripath.toLowerCase().endsWith("iso")
 && !uripath.toLowerCase().endsWith("iso.zip")
 && !uripath.toLowerCase().endsWith("iso.bz2")
-&& !uripath.toLowerCase().endsWith("iso.gz" {
+&& !uripath.toLowerCase().endsWith("iso.gz"))
+&& !uripath.toLowerCase().endsWith("metalink"))) {
 throw new IllegalArgumentException("Please 

[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-02-14 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16364506#comment-16364506
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

nvazquez commented on issue #2411: CLOUDSTACK-10238: Fix for metalink support 
on SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411#issuecomment-365689465
 
 
   Thanks @borisstoyanov! @DaanHoogland would you please review?


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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-02-10 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16359713#comment-16359713
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

blueorangutan commented on issue #2411: CLOUDSTACK-10238: Fix for metalink 
support on SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411#issuecomment-364713075
 
 
   Trillian test result (tid-2246)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 22664 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr2411-t2246-kvm-centos7.zip
   Intermitten failure detected: /marvin/tests/smoke/test_internal_lb.py
   Smoke tests completed. 67 look OK, 0 have error(s)
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   


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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-02-10 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16359607#comment-16359607
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

rhtyd commented on issue #2411: CLOUDSTACK-10238: Fix for metalink support on 
SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411#issuecomment-364681802
 
 
   @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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-02-10 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16359608#comment-16359608
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

blueorangutan commented on issue #2411: CLOUDSTACK-10238: Fix for metalink 
support on SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411#issuecomment-364681809
 
 
   @rhtyd 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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-02-10 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16359580#comment-16359580
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

blueorangutan commented on issue #2411: CLOUDSTACK-10238: Fix for metalink 
support on SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411#issuecomment-364679269
 
 
   Packaging result: ✔centos6 ✔centos7 ✔debian. JID-1699


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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-02-10 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16359526#comment-16359526
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

rhtyd commented on issue #2411: CLOUDSTACK-10238: Fix for metalink support on 
SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411#issuecomment-364673812
 
 
   @blueorangutan package


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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-02-10 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16359527#comment-16359527
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

blueorangutan commented on issue #2411: CLOUDSTACK-10238: Fix for metalink 
support on SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411#issuecomment-364673865
 
 
   @rhtyd a Jenkins job has been kicked to build packages. I'll keep you posted 
as I make progress.


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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-01-25 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16339381#comment-16339381
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

nvazquez commented on issue #2411: CLOUDSTACK-10238: Fix for metalink support 
on SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411#issuecomment-360501454
 
 
   Thanks for the manual verification @borisstoyanov! Waiting for confirmation 
on the aria2 usage


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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-01-19 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16332696#comment-16332696
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

blueorangutan commented on issue #2411: CLOUDSTACK-10238: Fix for metalink 
support on SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411#issuecomment-359049950
 
 
   Trillian test result (tid-2173)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 31320 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr2411-t2173-kvm-centos7.zip
   Intermitten failure detected: /marvin/tests/smoke/test_public_ip_range.py
   Intermitten failure detected: /marvin/tests/smoke/test_ssvm.py
   Intermitten failure detected: /marvin/tests/smoke/test_templates.py
   Intermitten failure detected: /marvin/tests/smoke/test_usage.py
   Intermitten failure detected: /marvin/tests/smoke/test_volumes.py
   Intermitten failure detected: /marvin/tests/smoke/test_vpc_redundant.py
   Intermitten failure detected: /marvin/tests/smoke/test_hostha_kvm.py
   Smoke tests completed. 64 look OK, 3 have error(s)
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_04_extract_template | `Failure` | 128.35 | test_templates.py
   ContextSuite context=TestISOUsage>:setup | `Error` | 0.00 | test_usage.py
   test_06_download_detached_volume | `Failure` | 136.58 | test_volumes.py
   


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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-01-19 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16332016#comment-16332016
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

blueorangutan commented on issue #2411: CLOUDSTACK-10238: Fix for metalink 
support on SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411#issuecomment-358916260
 
 
   @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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-01-19 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16332015#comment-16332015
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

borisstoyanov commented on issue #2411: CLOUDSTACK-10238: Fix for metalink 
support on SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411#issuecomment-358916216
 
 
   @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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-01-19 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16332003#comment-16332003
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

blueorangutan commented on issue #2411: CLOUDSTACK-10238: Fix for metalink 
support on SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411#issuecomment-358915385
 
 
   Packaging result: ✔centos6 ✔centos7 ✔debian. JID-1662


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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-01-19 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16331967#comment-16331967
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

blueorangutan commented on issue #2411: CLOUDSTACK-10238: Fix for metalink 
support on SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411#issuecomment-358908835
 
 
   @borisstoyanov a Jenkins job has been kicked to build packages. I'll keep 
you posted as I make progress.


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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-01-19 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16331964#comment-16331964
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

borisstoyanov commented on issue #2411: CLOUDSTACK-10238: Fix for metalink 
support on SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411#issuecomment-358908675
 
 
   @blueorangutan package


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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CLOUDSTACK-10238) Fix for metalink support on SSVM agents

2018-01-17 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-10238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16329991#comment-16329991
 ] 

ASF GitHub Bot commented on CLOUDSTACK-10238:
-

nvazquez opened a new pull request #2411: CLOUDSTACK-10238: Fix for metalink 
support on SSVM agents
URL: https://github.com/apache/cloudstack/pull/2411
 
 
   Fix for #2379. In that PR, aria2 dependency is added to system vm template 
to support metalink downloads on SSVM agents. This feature fixes metalink 
downloader issue and extends metalink support for OVA and ISO formats.


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


> Fix for metalink support on SSVM agents
> ---
>
> Key: CLOUDSTACK-10238
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-10238
> Project: CloudStack
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>Reporter: Nicolas Vazquez
>Assignee: Nicolas Vazquez
>Priority: Major
>
> Fix for metalink support



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)