Skip to content

Commit

Permalink
become: Add missing documentation for pfexec, dzdo and machinectl (an…
Browse files Browse the repository at this point in the history
…sible#53314)

Signed-off-by: Abhijeet Kasurde <[email protected]>
  • Loading branch information
Akasurde authored and bcoca committed Mar 6, 2019
1 parent b011ec4 commit be2a349
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion docs/bin/plugin_formatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,12 @@ def process_plugins(module_map, templates, outputname, output_dir, ansible_versi

display.v('about to template %s' % module)
display.vvvvv(pp.pformat(doc))
text = templates['plugin'].render(doc)
try:
text = templates['plugin'].render(doc)
except Exception as e:
display.warning(msg="Could not parse %s due to %s" % (module, e))
continue

if LooseVersion(jinja2.__version__) < LooseVersion('2.10'):
# jinja2 < 2.10's indent filter indents blank lines. Cleanup
text = re.sub(' +\n', '\n', text)
Expand Down
3 changes: 2 additions & 1 deletion lib/ansible/plugins/become/pfexec.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
become_user:
description:
- User you 'become' to execute the task
- This plugin ignores this settingas pfexec uses it's own ``exec_attr`` to figure this out,
- This plugin ignores this setting as pfexec uses it's own ``exec_attr`` to figure this out,
but it is supplied here for Ansible to make decisions needed for the task execution, like file permissions.
default: root
ini:
Expand Down Expand Up @@ -80,6 +80,7 @@
vars:
- name: ansible_pfexec_wrap_execution
env:
- name: ANSIBLE_PFEXEC_WRAP_EXECUTION
note:
- This plugin ignores ``become_user`` as pfexec uses it's own ``exec_attr`` to figure this out.
"""
Expand Down

0 comments on commit be2a349

Please sign in to comment.