You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2014/04/29 08:39:59 UTC

[1/2] git commit: Re-generate supported providers table.

Repository: libcloud
Updated Branches:
  refs/heads/trunk 865431320 -> 793e85440


Re-generate supported providers table.


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

Branch: refs/heads/trunk
Commit: 644de1dd3de94ef1c40d2ef4071ce8d99b3f4cc6
Parents: 8654313
Author: Tomaz Muraus <to...@apache.org>
Authored: Tue Apr 29 08:04:23 2014 +0200
Committer: Tomaz Muraus <to...@apache.org>
Committed: Tue Apr 29 08:04:23 2014 +0200

----------------------------------------------------------------------
 docs/dns/_supported_methods.rst   | 2 ++
 docs/dns/_supported_providers.rst | 2 ++
 2 files changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/644de1dd/docs/dns/_supported_methods.rst
----------------------------------------------------------------------
diff --git a/docs/dns/_supported_methods.rst b/docs/dns/_supported_methods.rst
index a2f903e..399358a 100644
--- a/docs/dns/_supported_methods.rst
+++ b/docs/dns/_supported_methods.rst
@@ -2,6 +2,7 @@
 Provider              list zones list records create zone update zone create record update record delete zone delete record
 ===================== ========== ============ =========== =========== ============= ============= =========== =============
 `Gandi DNS`_          yes        yes          yes         yes         yes           yes           yes         yes          
+`Google DNS`_         yes        yes          yes         no          yes           no            yes         yes          
 `Host Virtual DNS`_   yes        yes          yes         yes         yes           yes           yes         yes          
 `Linode DNS`_         yes        yes          yes         yes         yes           yes           yes         yes          
 `Rackspace DNS`_      yes        yes          yes         yes         yes           yes           yes         yes          
@@ -12,6 +13,7 @@ Provider              list zones list records create zone update zone create rec
 ===================== ========== ============ =========== =========== ============= ============= =========== =============
 
 .. _`Gandi DNS`: http://www.gandi.net/domain
+.. _`Google DNS`: https://cloud.google.com/
 .. _`Host Virtual DNS`: http://www.vr.org/
 .. _`Linode DNS`: http://www.linode.com/
 .. _`Rackspace DNS`: http://www.rackspace.com/

http://git-wip-us.apache.org/repos/asf/libcloud/blob/644de1dd/docs/dns/_supported_providers.rst
----------------------------------------------------------------------
diff --git a/docs/dns/_supported_providers.rst b/docs/dns/_supported_providers.rst
index 168e023..a8c497c 100644
--- a/docs/dns/_supported_providers.rst
+++ b/docs/dns/_supported_providers.rst
@@ -2,6 +2,7 @@
 Provider              Documentation                           Provider constant Module                                  Class Name                   
 ===================== ======================================= ================= ======================================= =============================
 `Gandi DNS`_                                                  GANDI             :mod:`libcloud.dns.drivers.gandi`       :class:`GandiDNSDriver`      
+`Google DNS`_                                                 GOOGLE            :mod:`libcloud.dns.drivers.google`      :class:`GoogleDNSDriver`     
 `Host Virtual DNS`_   :doc:`Click </dns/drivers/hostvirtual>` HOSTVIRTUAL       :mod:`libcloud.dns.drivers.hostvirtual` :class:`HostVirtualDNSDriver`
 `Linode DNS`_                                                 LINODE            :mod:`libcloud.dns.drivers.linode`      :class:`LinodeDNSDriver`     
 `Rackspace DNS`_                                              RACKSPACE         :mod:`libcloud.dns.drivers.rackspace`   :class:`RackspaceDNSDriver`  
@@ -12,6 +13,7 @@ Provider              Documentation                           Provider constant
 ===================== ======================================= ================= ======================================= =============================
 
 .. _`Gandi DNS`: http://www.gandi.net/domain
+.. _`Google DNS`: https://cloud.google.com/
 .. _`Host Virtual DNS`: http://www.vr.org/
 .. _`Linode DNS`: http://www.linode.com/
 .. _`Rackspace DNS`: http://www.rackspace.com/


[2/2] git commit: Change create_image API call params from Reboot to NoReboot and negated set logic

Posted by to...@apache.org.
Change create_image API call params from Reboot to NoReboot and negated set logic

Closes #284

Signed-off-by: Tomaz Muraus <to...@apache.org>


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

Branch: refs/heads/trunk
Commit: 793e85440789aaf1ade81220789d1465a7c0f1ee
Parents: 644de1d
Author: Matthew Lehman <le...@battelle.org>
Authored: Tue Apr 29 00:05:32 2014 -0400
Committer: Tomaz Muraus <to...@apache.org>
Committed: Tue Apr 29 08:26:15 2014 +0200

----------------------------------------------------------------------
 libcloud/compute/drivers/ec2.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/793e8544/libcloud/compute/drivers/ec2.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/ec2.py b/libcloud/compute/drivers/ec2.py
index 0a57b0b..8c1b046 100644
--- a/libcloud/compute/drivers/ec2.py
+++ b/libcloud/compute/drivers/ec2.py
@@ -1811,7 +1811,7 @@ class BaseEC2NodeDriver(NodeDriver):
         params = {'Action': 'CreateImage',
                   'InstanceId': node.id,
                   'Name': name,
-                  'Reboot': reboot}
+                  'NoReboot': not reboot}
 
         if description is not None:
             params['Description'] = description