From e52c25a7adfc838bb62abbbb4ff13d455cc4407d Mon Sep 17 00:00:00 2001 From: bobgroves Date: Sun, 19 Apr 2015 14:01:46 -0400 Subject: [PATCH] Makes rax_dns_record override default to true --- cloud/rackspace/rax_dns_record.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloud/rackspace/rax_dns_record.py b/cloud/rackspace/rax_dns_record.py index a67bcec1a96..05507676022 100644 --- a/cloud/rackspace/rax_dns_record.py +++ b/cloud/rackspace/rax_dns_record.py @@ -49,7 +49,7 @@ options: - Add new records if data doesn't match, instead of updating existing record with matching name. If there are already multiple records with matching name and overwrite=true, this module will fail. - default: false + default: true priority: description: - Required for MX and SRV records, but forbidden for other record types. @@ -190,7 +190,7 @@ def rax_dns_record_ptr(module, data=None, comment=None, loadbalancer=None, def rax_dns_record(module, comment=None, data=None, domain=None, name=None, - overwrite=False, priority=None, record_type='A', + overwrite=True, priority=None, record_type='A', state='present', ttl=7200): """Function for manipulating record types other than PTR"""