cloudflare_dns: Fix wrong variable name

This commit is contained in:
Michael Gruener 2016-03-21 21:47:26 +01:00
parent 0a65ddb3b1
commit 879410a94e

View file

@ -376,13 +376,13 @@ class CloudflareAPI(object):
if params['type'] == 'SRV':
search_value = str(params['weight']) + '\t' + str(params['port']) + '\t' + params['value']
search_record = params['service'] + '.' + params['proto'] + '.' + params['record']
if solo:
if params['solo']:
search_value = None
records = self.get_dns_records(params['zone'],params['type'],search_record,search_value)
for rr in records:
if solo:
if params['solo']:
if not ((rr['type'] == params['type']) and (rr['name'] == params['record']) and (rr['content'] == params['value'])):
self.changed = True
if not self.module.check_mode: