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 2019/09/13 10:44:58 UTC

[libcloud] branch trunk updated: finish #1323, add driver to list in types and providers

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 4120528  finish #1323, add driver to list in types and providers
     new a3334dc  Merge pull request #1350 from zepheiryan/list-gandi-live-dns-driver
4120528 is described below

commit 4120528c71224ebed65fd207f3084e38d1fb59c4
Author: Ryan Lee <ry...@zepheira.com>
AuthorDate: Thu Sep 12 19:01:21 2019 -0700

    finish #1323, add driver to list in types and providers
---
 libcloud/dns/providers.py | 2 ++
 libcloud/dns/types.py     | 1 +
 2 files changed, 3 insertions(+)

diff --git a/libcloud/dns/providers.py b/libcloud/dns/providers.py
index d815047..cc1409c 100644
--- a/libcloud/dns/providers.py
+++ b/libcloud/dns/providers.py
@@ -40,6 +40,8 @@ DRIVERS = {
     ('libcloud.dns.drivers.route53', 'Route53DNSDriver'),
     Provider.GANDI:
     ('libcloud.dns.drivers.gandi', 'GandiDNSDriver'),
+    Provider.GANDI_LIVE:
+    ('libcloud.dns.drivers.gandi_live', 'GandiLiveDNSDriver'),
     Provider.GOOGLE: ('libcloud.dns.drivers.google', 'GoogleDNSDriver'),
     Provider.SOFTLAYER:
     ('libcloud.dns.drivers.softlayer', 'SoftLayerDNSDriver'),
diff --git a/libcloud/dns/types.py b/libcloud/dns/types.py
index 832f2de..72a6dbf 100644
--- a/libcloud/dns/types.py
+++ b/libcloud/dns/types.py
@@ -44,6 +44,7 @@ class Provider(object):
     DNSIMPLE = 'dnsimple'
     DURABLEDNS = 'durabledns'
     GANDI = 'gandi'
+    GANDI_LIVE = 'gandi_live'
     GODADDY = 'godaddy'
     GOOGLE = 'google'
     HOSTVIRTUAL = 'hostvirtual'