Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added missing attribution to all module DOCUMENTATION strings #1174

Merged
merged 1 commit into from
Oct 1, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions library/file
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ examples:
notes:
- See also M(copy), M(template), M(assemble)
requirements: [ ]
author: Michael DeHaan
'''

def add_path_info(kwargs):
Expand Down
1 change: 1 addition & 0 deletions library/get_url
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ notes:
- Also see the M(template) module.
# informational: requirements for nodes
requirements: [ urllib2, urlparse ]
author: Jan-Piet Mens
'''

HAS_URLLIB2=True
Expand Down
1 change: 1 addition & 0 deletions library/lineinfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import os
DOCUMENTATION = '''
---
module: lineinfile
author: Daniel Hokka Zakrisson
short_description: Ensure a particular line is in a file
description:
- This module will search a file for a line, and ensure that it is present or absent.
Expand Down
1 change: 1 addition & 0 deletions library/raw
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ description:
examples:
- code: ansible newhost.example.com -m raw -a "yum -y install python-simplejson"
description: Example from /usr/bin/ansible to bootstrap a legacy python 2.4 host
author: Michael DeHaan
'''
1 change: 1 addition & 0 deletions library/setup
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ notes:
examples:
- code: ansible all -m setup -tree /tmp/facts
description: Obtain facts from all hosts and store them indexed by hostname at /tmp/facts.
author: Michael DeHaan
'''

try:
Expand Down