mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
parent
604fcb55ae
commit
ab41fb9cd4
3 changed files with 302 additions and 0 deletions
|
@ -557,6 +557,8 @@ class CloudflareAPI(object):
|
|||
do_update = True
|
||||
if (params['priority'] is not None) and ('priority' in cur_record) and (cur_record['priority'] != params['priority']):
|
||||
do_update = True
|
||||
if ('proxied' in new_record) and ('proxied' in cur_record) and (cur_record['proxied'] != params['proxied']):
|
||||
do_update = True
|
||||
if ('data' in new_record) and ('data' in cur_record):
|
||||
if (cur_record['data'] != new_record['data']):
|
||||
do_update = True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue