mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
If record_name="" write empty value to dns made easy
This is necessary for instance when setting MX records on the root of a domain. This is different than leaving record_name out completely which has the same behaviour as before
This commit is contained in:
committed by
Matt Clay
parent
b79806d5d4
commit
03f92abf8c
@@ -264,7 +264,7 @@ def main():
|
||||
record_name = module.params["record_name"]
|
||||
|
||||
# Follow Keyword Controlled Behavior
|
||||
if not record_name:
|
||||
if record_name is None:
|
||||
domain_records = DME.getRecords()
|
||||
if not domain_records:
|
||||
module.fail_json(
|
||||
|
||||
Reference in New Issue
Block a user