summaryrefslogtreecommitdiffstats
path: root/ovh/soapi/zoneExport
diff options
context:
space:
mode:
Diffstat (limited to 'ovh/soapi/zoneExport')
-rwxr-xr-xovh/soapi/zoneExport3
1 files changed, 2 insertions, 1 deletions
diff --git a/ovh/soapi/zoneExport b/ovh/soapi/zoneExport
index 7659d647..7747ded4 100755
--- a/ovh/soapi/zoneExport
+++ b/ovh/soapi/zoneExport
@@ -19,10 +19,11 @@ soap = WSDL.Proxy(wsdl)
username = environ['KREBS_OVH_USER']
password = environ['KREBS_OVH_PASS']
+domain = environ.get('KREBS_OVH_DOMAIN','krebsco.de')
session = soap.login(username, password, 'de', 0)
-result = soap.zoneExport(session, 'krebsco.de')
+result = soap.zoneExport(session, domain)
print result
soap.logout(session)