You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by re...@apache.org on 2016/01/17 13:37:22 UTC

[1/2] git commit: updated refs/heads/master to ad420bb

Repository: cloudstack
Updated Branches:
  refs/heads/master fb658f575 -> ad420bb1d


CLOUDSTACK-9041: Modifying template creation from snapshot function in base.py


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/bbe0fc4b
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/bbe0fc4b
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/bbe0fc4b

Branch: refs/heads/master
Commit: bbe0fc4be9527d51820b067a602886003991db4d
Parents: 3ded3e9
Author: Priti Sarap <pr...@clogeny.com>
Authored: Fri Nov 6 14:36:32 2015 +0530
Committer: Priti Sarap <pr...@clogeny.com>
Committed: Fri Nov 6 14:36:32 2015 +0530

----------------------------------------------------------------------
 tools/marvin/marvin/lib/base.py | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/bbe0fc4b/tools/marvin/marvin/lib/base.py
----------------------------------------------------------------------
diff --git a/tools/marvin/marvin/lib/base.py b/tools/marvin/marvin/lib/base.py
index 54922c8..f98d723 100755
--- a/tools/marvin/marvin/lib/base.py
+++ b/tools/marvin/marvin/lib/base.py
@@ -1201,6 +1201,9 @@ class Template:
             random_gen()
         ]) if random_name else services["name"]
 
+	if services["ispublic"]:
+	    cmd.ispublic = services["ispublic"]
+
         if "ostypeid" in services:
             cmd.ostypeid = services["ostypeid"]
         elif "ostype" in services:


[2/2] git commit: updated refs/heads/master to ad420bb

Posted by re...@apache.org.
Merge pull request #1041 from pritisarap12/CLOUDSTACK-9041-Modifying-template-creation-from-snapshot-function-in-base.py

CLOUDSTACK-9041: Modifying template creation from snapshot function In create_from_snapshot function of Template class there is no parameter to accept if the template is public hence default it is creating private templates
Hence adding this parameter.

* pr/1041:
  CLOUDSTACK-9041: Modifying template creation from snapshot function in base.py

Signed-off-by: Remi Bergsma <gi...@remi.nl>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/ad420bb1
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/ad420bb1
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/ad420bb1

Branch: refs/heads/master
Commit: ad420bb1dfb78fca6202ac46e18535d39d8d073f
Parents: fb658f5 bbe0fc4
Author: Remi Bergsma <gi...@remi.nl>
Authored: Sun Jan 17 13:37:01 2016 +0100
Committer: Remi Bergsma <gi...@remi.nl>
Committed: Sun Jan 17 13:37:03 2016 +0100

----------------------------------------------------------------------
 tools/marvin/marvin/lib/base.py | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/ad420bb1/tools/marvin/marvin/lib/base.py
----------------------------------------------------------------------