diff options
Diffstat (limited to 'ovh/soapi/zoneImport')
-rwxr-xr-x | ovh/soapi/zoneImport | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ovh/soapi/zoneImport b/ovh/soapi/zoneImport index 141fb4a2..42d46caf 100755 --- a/ovh/soapi/zoneImport +++ b/ovh/soapi/zoneImport @@ -21,12 +21,13 @@ soap = WSDL.Proxy(wsdl) username = environ['KREBS_OVH_USER'] password = environ['KREBS_OVH_PASS'] +domain = environ.get('KREBS_OVH_DOMAIN','krebsco.de') zone = join(stdin.readlines(),'') session = soap.login(username, password, 'en', 0) -result = soap.zoneImport(session, 'krebsco.de', zone) +result = soap.zoneImport(session, domain, zone) print result soap.logout(session) |