puppet: new arg to toggle no-/use_srv_records flag (#53095)

This commit is contained in:
Brett 2019-06-12 18:02:58 +10:00 committed by René Moser
parent 205f6b1699
commit 69ead0ba78

View file

@ -82,6 +82,11 @@ options:
- It has no effect with a puppetmaster.
type: str
version_added: "2.1"
use_srv_records:
description:
- Toggles use_srv_records flag
type: bool
version_added: "2.9"
summarize:
description:
- Whether to print a transaction summary.
@ -192,6 +197,7 @@ def main():
summarize=dict(type='bool', default=False),
debug=dict(type='bool', default=False),
verbose=dict(type='bool', default=False),
use_srv_records=dict(type='bool'),
),
supports_check_mode=True,
mutually_exclusive=[
@ -260,6 +266,11 @@ def main():
cmd += " --certname='%s'" % p['certname']
if module.check_mode:
cmd += " --noop"
if p['use_srv_records'] is not None:
if not ['use_srv_records']:
cmd += " --no-use_srv_records"
else:
cmd += " --use_srv_records"
elif 'noop' in p:
if p['noop']:
cmd += " --noop"