diff --git a/lib/ansible/modules/commands/command.py b/lib/ansible/modules/commands/command.py index 6baf35922c..b0aa5a7b99 100644 --- a/lib/ansible/modules/commands/command.py +++ b/lib/ansible/modules/commands/command.py @@ -81,7 +81,9 @@ notes: M(command) module is much more secure as it's not affected by the user's environment. - " C(creates), C(removes), and C(chdir) can be specified after the command. For instance, if you only want to run a command if a certain file does not exist, use this." -author: Michael DeHaan +author: + - Ansible Core Team + - Michael DeHaan ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/commands/raw.py b/lib/ansible/modules/commands/raw.py index 87f2b5c4bd..5305c97863 100644 --- a/lib/ansible/modules/commands/raw.py +++ b/lib/ansible/modules/commands/raw.py @@ -34,7 +34,9 @@ notes: playbooks will follow the trend of using M(command) unless M(shell) is explicitly required. When running ad-hoc commands, use your best judgement. -author: Michael DeHaan +author: + - Ansible Core Team + - Michael DeHaan ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/commands/script.py b/lib/ansible/modules/commands/script.py index 01a1ae34e7..ccf15331a6 100644 --- a/lib/ansible/modules/commands/script.py +++ b/lib/ansible/modules/commands/script.py @@ -32,7 +32,9 @@ options: version_added: "1.5" notes: - It is usually preferable to write Ansible modules than pushing scripts. Convert your script to an Ansible module for bonus points! -author: Michael DeHaan +author: + - Ansible Core Team + - Michael DeHaan """ EXAMPLES = ''' diff --git a/lib/ansible/modules/commands/shell.py b/lib/ansible/modules/commands/shell.py index b63a21080e..cccc90f05f 100644 --- a/lib/ansible/modules/commands/shell.py +++ b/lib/ansible/modules/commands/shell.py @@ -57,7 +57,9 @@ notes: "{{ var | quote }}" instead of just "{{ var }}" to make sure they don't include evil things like semicolons. requirements: [ ] -author: Michael DeHaan +author: + - Ansible Core Team + - Michael DeHaan ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/database/mysql/mysql_db.py b/lib/ansible/modules/database/mysql/mysql_db.py index a76c452672..e9a530811d 100644 --- a/lib/ansible/modules/database/mysql/mysql_db.py +++ b/lib/ansible/modules/database/mysql/mysql_db.py @@ -89,7 +89,7 @@ notes: the credentials from C(~/.my.cnf), and finally fall back to using the MySQL default login of C(root) with no password. requirements: [ ConfigParser ] -author: Mark Theunissen +author: "Mark Theunissen (@marktheunissen)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/database/mysql/mysql_user.py b/lib/ansible/modules/database/mysql/mysql_user.py index cb9b89ffc5..834bb961a0 100644 --- a/lib/ansible/modules/database/mysql/mysql_user.py +++ b/lib/ansible/modules/database/mysql/mysql_user.py @@ -121,7 +121,7 @@ notes: the file." requirements: [ "MySQLdb" ] -author: Mark Theunissen +author: "Mark Theunissen (@marktheunissen)" ''' EXAMPLES = """ diff --git a/lib/ansible/modules/database/mysql/mysql_variables.py b/lib/ansible/modules/database/mysql/mysql_variables.py index 199c5eb6ec..0b0face032 100644 --- a/lib/ansible/modules/database/mysql/mysql_variables.py +++ b/lib/ansible/modules/database/mysql/mysql_variables.py @@ -30,6 +30,7 @@ short_description: Manage MySQL global variables description: - Query / Set MySQL variables version_added: 1.3 +author: "Balazs Pocze (@banyek)" options: variable: description: diff --git a/lib/ansible/modules/database/postgresql/postgresql_db.py b/lib/ansible/modules/database/postgresql/postgresql_db.py index 4ce8e146cc..469d68fa0f 100644 --- a/lib/ansible/modules/database/postgresql/postgresql_db.py +++ b/lib/ansible/modules/database/postgresql/postgresql_db.py @@ -95,7 +95,7 @@ notes: - This module uses I(psycopg2), a Python PostgreSQL database adapter. You must ensure that psycopg2 is installed on the host before using this module. If the remote host is the PostgreSQL server (which is the default case), then PostgreSQL must also be installed on the remote host. For Ubuntu-based systems, install the C(postgresql), C(libpq-dev), and C(python-psycopg2) packages on the remote host before using this module. requirements: [ psycopg2 ] -author: Lorin Hochstein +author: "Lorin Hochstein (@lorin)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/database/postgresql/postgresql_privs.py b/lib/ansible/modules/database/postgresql/postgresql_privs.py index 22a565f6b6..10f2361bfb 100644 --- a/lib/ansible/modules/database/postgresql/postgresql_privs.py +++ b/lib/ansible/modules/database/postgresql/postgresql_privs.py @@ -136,7 +136,7 @@ notes: another user also, R can still access database objects via these privileges. - When revoking privileges, C(RESTRICT) is assumed (see PostgreSQL docs). requirements: [psycopg2] -author: Bernhard Weitzhofer +author: "Bernhard Weitzhofer (@b6d)" """ EXAMPLES = """ diff --git a/lib/ansible/modules/database/postgresql/postgresql_user.py b/lib/ansible/modules/database/postgresql/postgresql_user.py index ee691e5ca5..4fa4df141c 100644 --- a/lib/ansible/modules/database/postgresql/postgresql_user.py +++ b/lib/ansible/modules/database/postgresql/postgresql_user.py @@ -137,7 +137,7 @@ notes: to all users. You may not specify password or role_attr_flags when the PUBLIC user is specified. requirements: [ psycopg2 ] -author: Lorin Hochstein +author: "Lorin Hochstein (@lorin)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/files/acl.py b/lib/ansible/modules/files/acl.py index 0c568ba59a..0c924fee94 100644 --- a/lib/ansible/modules/files/acl.py +++ b/lib/ansible/modules/files/acl.py @@ -79,7 +79,7 @@ options: description: - DEPRECATED. The acl to set or remove. This must always be quoted in the form of '::'. The qualifier may be empty for some types, but the type and perms are always requried. '-' can be used as placeholder when you do not care about permissions. This is now superseded by entity, type and permissions fields. -author: Brian Coca +author: "Brian Coca (@bcoca)" notes: - The "acl" module requires that acls are enabled on the target filesystem and that the setfacl and getfacl binaries are installed. ''' diff --git a/lib/ansible/modules/files/assemble.py b/lib/ansible/modules/files/assemble.py index a66c82f432..1f9a952d04 100644 --- a/lib/ansible/modules/files/assemble.py +++ b/lib/ansible/modules/files/assemble.py @@ -79,7 +79,7 @@ options: U(http://docs.python.org/2/library/re.html). required: false default: null -author: Stephen Fromm +author: "Stephen Fromm (@sfromm)" extends_documentation_fragment: files ''' diff --git a/lib/ansible/modules/files/copy.py b/lib/ansible/modules/files/copy.py index e80ed80553..b7f333cead 100644 --- a/lib/ansible/modules/files/copy.py +++ b/lib/ansible/modules/files/copy.py @@ -86,7 +86,9 @@ options: required: false version_added: "1.5" extends_documentation_fragment: files -author: Michael DeHaan +author: + - "Ansible Core Team" + - "Michael DeHaan" notes: - The "copy" module recursively copy facility does not scale to lots (>hundreds) of files. For alternative, see synchronize module, which is a wrapper around rsync. diff --git a/lib/ansible/modules/files/fetch.py b/lib/ansible/modules/files/fetch.py index 37ead3a735..b823437497 100644 --- a/lib/ansible/modules/files/fetch.py +++ b/lib/ansible/modules/files/fetch.py @@ -50,7 +50,9 @@ options: will use the basename of the source file, similar to the copy module. Obviously this is only handy if the filenames are unique. requirements: [] -author: Michael DeHaan +author: + - "Ansible Core Team" + - "Michael DeHaan" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/files/file.py b/lib/ansible/modules/files/file.py index 8fac305045..5f11f2dd58 100644 --- a/lib/ansible/modules/files/file.py +++ b/lib/ansible/modules/files/file.py @@ -41,7 +41,9 @@ description: notes: - See also M(copy), M(template), M(assemble) requirements: [ ] -author: Michael DeHaan +author: + - "Ansible Core Team" + - "Michael DeHaan" options: path: description: diff --git a/lib/ansible/modules/files/ini_file.py b/lib/ansible/modules/files/ini_file.py index e247c265fc..9242821ae9 100644 --- a/lib/ansible/modules/files/ini_file.py +++ b/lib/ansible/modules/files/ini_file.py @@ -73,7 +73,7 @@ notes: Either use M(template) to create a base INI file with a C([default]) section, or use M(lineinfile) to add the missing line. requirements: [ ConfigParser ] -author: Jan-Piet Mens +author: "Jan-Piet Mens (@jpmens)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/files/lineinfile.py b/lib/ansible/modules/files/lineinfile.py index e66bdc0113..fafb8470b5 100644 --- a/lib/ansible/modules/files/lineinfile.py +++ b/lib/ansible/modules/files/lineinfile.py @@ -27,7 +27,9 @@ import tempfile DOCUMENTATION = """ --- module: lineinfile -author: Daniel Hokka Zakrisson, Ahti Kitsik +author: + - "Daniel Hokka Zakrissoni (@dhozac)" + - "Ahti Kitsik (@ahtik)" extends_documentation_fragment: files short_description: Ensure a particular line is in a file, or replace an existing line using a back-referenced regular expression. diff --git a/lib/ansible/modules/files/replace.py b/lib/ansible/modules/files/replace.py index a21d84cd8d..fa0142823e 100644 --- a/lib/ansible/modules/files/replace.py +++ b/lib/ansible/modules/files/replace.py @@ -25,7 +25,7 @@ import tempfile DOCUMENTATION = """ --- module: replace -author: Evan Kaufman +author: "Evan Kaufman (@EvanK)" extends_documentation_fragment: files short_description: Replace all instances of a particular string in a file using a back-referenced regular expression. diff --git a/lib/ansible/modules/files/stat.py b/lib/ansible/modules/files/stat.py index 798a560369..5f79874d9f 100644 --- a/lib/ansible/modules/files/stat.py +++ b/lib/ansible/modules/files/stat.py @@ -47,7 +47,7 @@ options: default: yes aliases: [] version_added: "1.8" -author: Bruce Pennypacker +author: "Bruce Pennypacker (@bpennypacker)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/files/synchronize.py b/lib/ansible/modules/files/synchronize.py index 94feb8b361..c4931d31c7 100644 --- a/lib/ansible/modules/files/synchronize.py +++ b/lib/ansible/modules/files/synchronize.py @@ -161,9 +161,9 @@ notes: - Expect that dest=~/x will be ~/x even if using sudo. - To exclude files and directories from being synchronized, you may add C(.rsync-filter) files to the source directory. - - -author: Timothy Appnel + + +author: "Timothy Appnel (@tima)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/files/template.py b/lib/ansible/modules/files/template.py index 7ba072fcdc..2feb599abd 100644 --- a/lib/ansible/modules/files/template.py +++ b/lib/ansible/modules/files/template.py @@ -50,7 +50,9 @@ options: notes: - "Since Ansible version 0.9, templates are loaded with C(trim_blocks=True)." requirements: [] -author: Michael DeHaan +author: + - Ansible Core Team + - Michael DeHaan extends_documentation_fragment: files ''' diff --git a/lib/ansible/modules/files/unarchive.py b/lib/ansible/modules/files/unarchive.py index 625989ffdf..386503cadd 100644 --- a/lib/ansible/modules/files/unarchive.py +++ b/lib/ansible/modules/files/unarchive.py @@ -58,7 +58,7 @@ options: choices: [ "yes", "no" ] default: "no" version_added: "2.0" -author: Dylan Martin +author: "Dylan Martin (@pileofrogs)" todo: - detect changed/unchanged for .zip files - handle common unarchive args, like preserve owner/timestamp etc... diff --git a/lib/ansible/modules/files/xattr.py b/lib/ansible/modules/files/xattr.py index 94115ae3b5..5e67e5e03a 100644 --- a/lib/ansible/modules/files/xattr.py +++ b/lib/ansible/modules/files/xattr.py @@ -58,7 +58,7 @@ options: - if yes, dereferences symlinks and sets/gets attributes on symlink target, otherwise acts on symlink itself. -author: Brian Coca +author: "Brian Coca (@bcoca)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/inventory/add_host.py b/lib/ansible/modules/inventory/add_host.py index b28c6f9018..2ab76b4c16 100644 --- a/lib/ansible/modules/inventory/add_host.py +++ b/lib/ansible/modules/inventory/add_host.py @@ -22,7 +22,9 @@ options: notes: - This module bypasses the play host loop and only runs once for all the hosts in the play, if you need it to iterate use a with\_ directive. -author: Seth Vidal +author: + - "Ansible Core Team" + - "Seth Vidal" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/inventory/group_by.py b/lib/ansible/modules/inventory/group_by.py index d09552e662..f63bdf5912 100644 --- a/lib/ansible/modules/inventory/group_by.py +++ b/lib/ansible/modules/inventory/group_by.py @@ -12,7 +12,7 @@ options: description: - The variables whose values will be used as groups required: true -author: Jeroen Hoekx +author: "Jeroen Hoekx (@jhoekx)" notes: - Spaces in group names are converted to dashes '-'. ''' diff --git a/lib/ansible/modules/network/basics/get_url.py b/lib/ansible/modules/network/basics/get_url.py index 2bf37e3b12..074bf8bb48 100644 --- a/lib/ansible/modules/network/basics/get_url.py +++ b/lib/ansible/modules/network/basics/get_url.py @@ -114,7 +114,7 @@ options: required: false # informational: requirements for nodes requirements: [ urllib2, urlparse ] -author: Jan-Piet Mens +author: "Jan-Piet Mens (@jpmens)" ''' EXAMPLES=''' diff --git a/lib/ansible/modules/network/basics/slurp.py b/lib/ansible/modules/network/basics/slurp.py index a2130c354b..f96434f5fd 100644 --- a/lib/ansible/modules/network/basics/slurp.py +++ b/lib/ansible/modules/network/basics/slurp.py @@ -37,7 +37,9 @@ options: notes: - "See also: M(fetch)" requirements: [] -author: Michael DeHaan +author: + - "Ansible Core Team" + - "Michael DeHaan" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/network/basics/uri.py b/lib/ansible/modules/network/basics/uri.py index 84b7ee77e0..a5e233d985 100644 --- a/lib/ansible/modules/network/basics/uri.py +++ b/lib/ansible/modules/network/basics/uri.py @@ -143,7 +143,7 @@ options: # informational: requirements for nodes requirements: [ urlparse, httplib2 ] -author: Romeo Theriault +author: "Romeo Theriault (@romeotheriault)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/packaging/language/easy_install.py b/lib/ansible/modules/packaging/language/easy_install.py index d566e003d8..017f6b818a 100644 --- a/lib/ansible/modules/packaging/language/easy_install.py +++ b/lib/ansible/modules/packaging/language/easy_install.py @@ -85,7 +85,7 @@ notes: - Also note that I(virtualenv) must be installed on the remote host if the C(virtualenv) parameter is specified. requirements: [ "virtualenv" ] -author: Matt Wright +author: "Matt Wright (@mattupstate)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/packaging/language/gem.py b/lib/ansible/modules/packaging/language/gem.py index 54d06da746..1d15763fbb 100644 --- a/lib/ansible/modules/packaging/language/gem.py +++ b/lib/ansible/modules/packaging/language/gem.py @@ -78,7 +78,9 @@ options: - Allow adding build flags for gem compilation required: false version_added: "2.0" -author: Johan Wiren +author: + - "Ansible Core Team" + - "Johan Wiren" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/packaging/language/pip.py b/lib/ansible/modules/packaging/language/pip.py index a0c70c1a18..b27e136689 100644 --- a/lib/ansible/modules/packaging/language/pip.py +++ b/lib/ansible/modules/packaging/language/pip.py @@ -100,7 +100,7 @@ options: notes: - Please note that virtualenv (U(http://www.virtualenv.org/)) must be installed on the remote host if the virtualenv parameter is specified and the virtualenv needs to be initialized. requirements: [ "virtualenv", "pip" ] -author: Matt Wright +author: "Matt Wright (@mattupstate)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/packaging/os/apt.py b/lib/ansible/modules/packaging/os/apt.py index 61e2fc3f03..09129a73fa 100644 --- a/lib/ansible/modules/packaging/os/apt.py +++ b/lib/ansible/modules/packaging/os/apt.py @@ -94,7 +94,7 @@ options: required: false version_added: "1.6" requirements: [ python-apt, aptitude ] -author: Matthew Williams +author: "Matthew Williams (@mgwilliams)" notes: - Three of the upgrade modes (C(full), C(safe) and its alias C(yes)) require C(aptitude), otherwise C(apt-get) suffices. diff --git a/lib/ansible/modules/packaging/os/apt_key.py b/lib/ansible/modules/packaging/os/apt_key.py index 2967646fef..d41664f121 100644 --- a/lib/ansible/modules/packaging/os/apt_key.py +++ b/lib/ansible/modules/packaging/os/apt_key.py @@ -22,7 +22,7 @@ DOCUMENTATION = ''' --- module: apt_key -author: Jayson Vantuyl & others +author: "Jayson Vantuyl & others (@jvantuyl)" version_added: "1.0" short_description: Add or remove an apt key description: diff --git a/lib/ansible/modules/packaging/os/apt_repository.py b/lib/ansible/modules/packaging/os/apt_repository.py index 5153699c8b..9d48edec7b 100644 --- a/lib/ansible/modules/packaging/os/apt_repository.py +++ b/lib/ansible/modules/packaging/os/apt_repository.py @@ -63,7 +63,7 @@ options: required: false default: 'yes' choices: ['yes', 'no'] -author: Alexander Saltanov +author: "Alexander Saltanov (@sashka)" version_added: "0.7" requirements: [ python-apt ] ''' diff --git a/lib/ansible/modules/packaging/os/apt_rpm.py b/lib/ansible/modules/packaging/os/apt_rpm.py index a85c528a23..fec220e051 100644 --- a/lib/ansible/modules/packaging/os/apt_rpm.py +++ b/lib/ansible/modules/packaging/os/apt_rpm.py @@ -44,7 +44,7 @@ options: required: false default: no choices: [ "yes", "no" ] -author: Evgenii Terechkov +author: "Evgenii Terechkov (@evgkrsk)" notes: [] ''' diff --git a/lib/ansible/modules/packaging/os/redhat_subscription.py b/lib/ansible/modules/packaging/os/redhat_subscription.py index 4248f3923a..1cfd8fc25a 100644 --- a/lib/ansible/modules/packaging/os/redhat_subscription.py +++ b/lib/ansible/modules/packaging/os/redhat_subscription.py @@ -7,7 +7,7 @@ short_description: Manage Red Hat Network registration and subscriptions using t description: - Manage registration and subscription to the Red Hat Network entitlement platform. version_added: "1.2" -author: James Laska +author: "James Laska (@jlaska)" notes: - In order to register a system, subscription-manager requires either a username and password, or an activationkey. requirements: diff --git a/lib/ansible/modules/packaging/os/rhn_channel.py b/lib/ansible/modules/packaging/os/rhn_channel.py index 42d61f36e6..0071183158 100644 --- a/lib/ansible/modules/packaging/os/rhn_channel.py +++ b/lib/ansible/modules/packaging/os/rhn_channel.py @@ -24,7 +24,7 @@ short_description: Adds or removes Red Hat software channels description: - Adds or removes Red Hat software channels version_added: "1.1" -author: Vincent Van der Kussen +author: "Vincent Van der Kussen (@vincentvdk)" notes: - this module fetches the system id from RHN. requirements: diff --git a/lib/ansible/modules/packaging/os/rpm_key.py b/lib/ansible/modules/packaging/os/rpm_key.py index f132d55250..1b38da3823 100644 --- a/lib/ansible/modules/packaging/os/rpm_key.py +++ b/lib/ansible/modules/packaging/os/rpm_key.py @@ -22,7 +22,7 @@ DOCUMENTATION = ''' --- module: rpm_key -author: Hector Acosta +author: "Hector Acosta (@hacosta) " short_description: Adds or removes a gpg key from the rpm db description: - Adds or removes (rpm --import) a gpg key to your rpm database. diff --git a/lib/ansible/modules/packaging/os/yum.py b/lib/ansible/modules/packaging/os/yum.py index 9fed7434b1..9e88c5404f 100644 --- a/lib/ansible/modules/packaging/os/yum.py +++ b/lib/ansible/modules/packaging/os/yum.py @@ -121,7 +121,9 @@ options: notes: [] # informational: requirements for nodes requirements: [ yum ] -author: Seth Vidal +author: + - "Ansible Core Team" + - "Seth Vidal" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/source_control/git.py b/lib/ansible/modules/source_control/git.py index d1ed929a68..369430211f 100644 --- a/lib/ansible/modules/source_control/git.py +++ b/lib/ansible/modules/source_control/git.py @@ -21,7 +21,9 @@ DOCUMENTATION = ''' --- module: git -author: Michael DeHaan +author: + - "Ansible Core Team" + - "Michael DeHaan" version_added: "0.0.1" short_description: Deploy software (or files) from git checkouts description: diff --git a/lib/ansible/modules/source_control/hg.py b/lib/ansible/modules/source_control/hg.py index d83215fabe..47b23d26fd 100644 --- a/lib/ansible/modules/source_control/hg.py +++ b/lib/ansible/modules/source_control/hg.py @@ -32,7 +32,7 @@ short_description: Manages Mercurial (hg) repositories. description: - Manages Mercurial (hg) repositories. Supports SSH, HTTP/S and local address. version_added: "1.0" -author: Yeukhon Wong +author: "Yeukhon Wong (@yeukhon)" options: repo: description: diff --git a/lib/ansible/modules/source_control/subversion.py b/lib/ansible/modules/source_control/subversion.py index 7d49d0a227..e3ff6dbfba 100644 --- a/lib/ansible/modules/source_control/subversion.py +++ b/lib/ansible/modules/source_control/subversion.py @@ -25,7 +25,7 @@ short_description: Deploys a subversion repository. description: - Deploy given repository URL / revision to dest. If dest exists, update to the specified revision, otherwise perform a checkout. version_added: "0.7" -author: Dane Summers, njharman@gmail.com +author: "Dane Summers (@dsummersl) " notes: - Requires I(svn) to be installed on the client. requirements: [] diff --git a/lib/ansible/modules/system/authorized_key.py b/lib/ansible/modules/system/authorized_key.py index 458b94dff0..bb223acbe4 100644 --- a/lib/ansible/modules/system/authorized_key.py +++ b/lib/ansible/modules/system/authorized_key.py @@ -81,7 +81,7 @@ options: version_added: "1.9" description: - "Adds or removes authorized keys for particular user accounts" -author: Brad Olson +author: "Brad Olson (@bradobro)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/system/cron.py b/lib/ansible/modules/system/cron.py index cfb254acee..b694bab8f2 100644 --- a/lib/ansible/modules/system/cron.py +++ b/lib/ansible/modules/system/cron.py @@ -118,7 +118,7 @@ options: choices: [ "reboot", "yearly", "annually", "monthly", "weekly", "daily", "hourly" ] requirements: - cron -author: Dane Summers +author: "Dane Summers (@dsummersl)" updates: [ 'Mike Grozak', 'Patrick Callahan' ] """ diff --git a/lib/ansible/modules/system/group.py b/lib/ansible/modules/system/group.py index 83ea410b0b..d952cb5c28 100755 --- a/lib/ansible/modules/system/group.py +++ b/lib/ansible/modules/system/group.py @@ -21,7 +21,7 @@ DOCUMENTATION = ''' --- module: group -author: Stephen Fromm +author: "Stephen Fromm (@sfromm)" version_added: "0.0.2" short_description: Add or remove groups requirements: [ groupadd, groupdel, groupmod ] diff --git a/lib/ansible/modules/system/hostname.py b/lib/ansible/modules/system/hostname.py index b90b044159..882402a5e2 100644 --- a/lib/ansible/modules/system/hostname.py +++ b/lib/ansible/modules/system/hostname.py @@ -21,7 +21,7 @@ DOCUMENTATION = ''' --- module: hostname -author: Hiroaki Nakamura +author: "Hiroaki Nakamura (@hnakamur)" version_added: "1.4" short_description: Manage hostname requirements: [ hostname ] diff --git a/lib/ansible/modules/system/mount.py b/lib/ansible/modules/system/mount.py index e11d497220..1564d0999f 100644 --- a/lib/ansible/modules/system/mount.py +++ b/lib/ansible/modules/system/mount.py @@ -79,7 +79,9 @@ options: notes: [] requirements: [] -author: Seth Vidal +author: + - Ansible Core Team + - Seth Vidal ''' EXAMPLES = ''' # Mount DVD read-only diff --git a/lib/ansible/modules/system/ping.py b/lib/ansible/modules/system/ping.py index b098d0054c..bea7fb22f1 100644 --- a/lib/ansible/modules/system/ping.py +++ b/lib/ansible/modules/system/ping.py @@ -29,7 +29,9 @@ description: contact. It does not make sense in playbooks, but it is useful from C(/usr/bin/ansible) options: {} -author: Michael DeHaan +author: + - "Ansible Core Team" + - "Michael DeHaan" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/system/seboolean.py b/lib/ansible/modules/system/seboolean.py index 9799e71636..3a150d05a2 100644 --- a/lib/ansible/modules/system/seboolean.py +++ b/lib/ansible/modules/system/seboolean.py @@ -45,7 +45,7 @@ options: notes: - Not tested on any debian based system requirements: [ ] -author: Stephen Fromm +author: "Stephen Fromm (@sfromm)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/system/selinux.py b/lib/ansible/modules/system/selinux.py index 7f88a4a47a..2debb95a47 100644 --- a/lib/ansible/modules/system/selinux.py +++ b/lib/ansible/modules/system/selinux.py @@ -45,7 +45,7 @@ options: notes: - Not tested on any debian based system requirements: [ libselinux-python ] -author: Derek Carter +author: "Derek Carter (@goozbach) " ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/system/service.py b/lib/ansible/modules/system/service.py index 30cce01b87..c788e5f460 100644 --- a/lib/ansible/modules/system/service.py +++ b/lib/ansible/modules/system/service.py @@ -21,7 +21,9 @@ DOCUMENTATION = ''' --- module: service -author: Michael DeHaan +author: + - "Ansible Core Team" + - "Michael DeHaan" version_added: "0.1" short_description: Manage services. description: diff --git a/lib/ansible/modules/system/setup.py b/lib/ansible/modules/system/setup.py index 486304230b..2fbe71e260 100644 --- a/lib/ansible/modules/system/setup.py +++ b/lib/ansible/modules/system/setup.py @@ -57,7 +57,9 @@ notes: - If the target host is Windows, you will not currently have the ability to use C(fact_path) or C(filter) as this is provided by a simpler implementation of the module. Different facts are returned for Windows hosts. -author: Michael DeHaan +author: + - "Ansible Core Team" + - "Michael DeHaan" ''' EXAMPLES = """ diff --git a/lib/ansible/modules/system/sysctl.py b/lib/ansible/modules/system/sysctl.py index c5a6868505..e48d5df74c 100644 --- a/lib/ansible/modules/system/sysctl.py +++ b/lib/ansible/modules/system/sysctl.py @@ -71,7 +71,7 @@ options: default: False notes: [] requirements: [] -author: David "DaviXX" CHANIAL +author: "David CHANIAL (@davixx) " ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/system/user.py b/lib/ansible/modules/system/user.py index dfeb6e47eb..29dd6f848a 100755 --- a/lib/ansible/modules/system/user.py +++ b/lib/ansible/modules/system/user.py @@ -21,7 +21,7 @@ DOCUMENTATION = ''' --- module: user -author: Stephen Fromm +author: "Stephen Fromm (@sfromm)" version_added: "0.2" short_description: Manage user accounts requirements: [ useradd, userdel, usermod ] diff --git a/lib/ansible/modules/utilities/helper/accelerate.py b/lib/ansible/modules/utilities/helper/accelerate.py index 726195d72e..8ae8ab263b 100644 --- a/lib/ansible/modules/utilities/helper/accelerate.py +++ b/lib/ansible/modules/utilities/helper/accelerate.py @@ -66,7 +66,7 @@ notes: requirements: - "python >= 2.6" - "python-keyczar" -author: James Cammarata +author: "James Cammarata (@jimi-c)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/utilities/helper/fireball.py b/lib/ansible/modules/utilities/helper/fireball.py index 43760969a8..97b4acc85a 100644 --- a/lib/ansible/modules/utilities/helper/fireball.py +++ b/lib/ansible/modules/utilities/helper/fireball.py @@ -45,7 +45,9 @@ options: notes: - See the advanced playbooks chapter for more about using fireball mode. requirements: [ "zmq", "keyczar" ] -author: Michael DeHaan +author: + - "Ansible Core Team" + - "Michael DeHaan" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/utilities/logic/assert.py b/lib/ansible/modules/utilities/logic/assert.py index f5963d60cd..e9e359f421 100644 --- a/lib/ansible/modules/utilities/logic/assert.py +++ b/lib/ansible/modules/utilities/logic/assert.py @@ -31,7 +31,9 @@ options: - "A string expression of the same form that can be passed to the 'when' statement" - "Alternatively, a list of string expressions" required: true -author: Michael DeHaan +author: + - "Ansible Core Team" + - "Michael DeHaan" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/utilities/logic/async_status.py b/lib/ansible/modules/utilities/logic/async_status.py index f991b50064..8b134c94a7 100644 --- a/lib/ansible/modules/utilities/logic/async_status.py +++ b/lib/ansible/modules/utilities/logic/async_status.py @@ -43,7 +43,9 @@ options: notes: - See also U(http://docs.ansible.com/playbooks_async.html) requirements: [] -author: Michael DeHaan +author: + - "Ansible Core Team" + - "Michael DeHaan" ''' import datetime diff --git a/lib/ansible/modules/utilities/logic/debug.py b/lib/ansible/modules/utilities/logic/debug.py index 2df68ca083..5142709dbe 100644 --- a/lib/ansible/modules/utilities/logic/debug.py +++ b/lib/ansible/modules/utilities/logic/debug.py @@ -38,7 +38,9 @@ options: var: description: - A variable name to debug. Mutually exclusive with the 'msg' option. -author: Dag Wieers, Michael DeHaan +author: + - "Dag Wieers (@dagwieers)" + - "Michael DeHaan" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/utilities/logic/fail.py b/lib/ansible/modules/utilities/logic/fail.py index 23f5b83668..75a7c81d1c 100644 --- a/lib/ansible/modules/utilities/logic/fail.py +++ b/lib/ansible/modules/utilities/logic/fail.py @@ -34,7 +34,7 @@ options: required: false default: "'Failed as requested from task'" -author: Dag Wieers +author: "Dag Wieers (@dagwieers)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/utilities/logic/include_vars.py b/lib/ansible/modules/utilities/logic/include_vars.py index 4c7c39d903..a6b2b5b152 100644 --- a/lib/ansible/modules/utilities/logic/include_vars.py +++ b/lib/ansible/modules/utilities/logic/include_vars.py @@ -10,7 +10,7 @@ DOCUMENTATION = ''' --- -author: Benno Joy +author: "Benno Joy (@bennojoy)" module: include_vars short_description: Load variables from files, dynamically within a task. description: diff --git a/lib/ansible/modules/utilities/logic/pause.py b/lib/ansible/modules/utilities/logic/pause.py index 6e8a83afe6..f1d10bf017 100644 --- a/lib/ansible/modules/utilities/logic/pause.py +++ b/lib/ansible/modules/utilities/logic/pause.py @@ -25,7 +25,7 @@ options: - Optional text to use for the prompt message. required: false default: null -author: Tim Bielawa +author: "Tim Bielawa (@tbielawa)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/utilities/logic/set_fact.py b/lib/ansible/modules/utilities/logic/set_fact.py index f9124ab0ea..f05dbf7679 100644 --- a/lib/ansible/modules/utilities/logic/set_fact.py +++ b/lib/ansible/modules/utilities/logic/set_fact.py @@ -20,7 +20,7 @@ DOCUMENTATION = ''' --- -author: Dag Wieers +author: "Dag Wieers (@dagwieers)" module: set_fact short_description: Set host facts from a task description: diff --git a/lib/ansible/modules/utilities/logic/wait_for.py b/lib/ansible/modules/utilities/logic/wait_for.py index 4aa5bc7828..95653b56d3 100644 --- a/lib/ansible/modules/utilities/logic/wait_for.py +++ b/lib/ansible/modules/utilities/logic/wait_for.py @@ -101,7 +101,10 @@ options: notes: - The ability to use search_regex with a port connection was added in 1.7. requirements: [] -author: Jeroen Hoekx, John Jarvis, Andrii Radyk +author: + - "Jeroen Hoekx (@jhoekx)" + - "John Jarvis (@jarv)" + - "Andrii Radyk (@AnderEnder)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/web_infrastructure/apache2_module.py b/lib/ansible/modules/web_infrastructure/apache2_module.py index 817e782aa7..ec9a8985e6 100644 --- a/lib/ansible/modules/web_infrastructure/apache2_module.py +++ b/lib/ansible/modules/web_infrastructure/apache2_module.py @@ -20,6 +20,7 @@ DOCUMENTATION = ''' --- module: apache2_module version_added: 1.6 +author: "Christian Berendt (@berendt)" short_description: enables/disables a module of the Apache2 webserver description: - Enables or disables a specified module of the Apache2 webserver. diff --git a/lib/ansible/modules/web_infrastructure/django_manage.py b/lib/ansible/modules/web_infrastructure/django_manage.py index 46ebb2fb8f..4dce581fa8 100644 --- a/lib/ansible/modules/web_infrastructure/django_manage.py +++ b/lib/ansible/modules/web_infrastructure/django_manage.py @@ -92,7 +92,7 @@ notes: - To be able to use the migrate command, you must have south installed and added as an app in your settings - To be able to use the collectstatic command, you must have enabled staticfiles in your settings requirements: [ "virtualenv", "django" ] -author: Scott Anderson +author: "Scott Anderson (@tastychutney)" ''' EXAMPLES = """ diff --git a/lib/ansible/modules/web_infrastructure/htpasswd.py b/lib/ansible/modules/web_infrastructure/htpasswd.py index 4a72ea37fe..fce8b062d1 100644 --- a/lib/ansible/modules/web_infrastructure/htpasswd.py +++ b/lib/ansible/modules/web_infrastructure/htpasswd.py @@ -66,7 +66,7 @@ notes: - "On Debian, Ubuntu, or Fedora: install I(python-passlib)." - "On RHEL or CentOS: Enable EPEL, then install I(python-passlib)." requires: [ passlib>=1.6 ] -author: Lorin Hochstein +author: "Lorin Hochstein (@lorin)" """ EXAMPLES = """ diff --git a/lib/ansible/modules/web_infrastructure/supervisorctl.py b/lib/ansible/modules/web_infrastructure/supervisorctl.py index ef86eec26a..47d341c9e7 100644 --- a/lib/ansible/modules/web_infrastructure/supervisorctl.py +++ b/lib/ansible/modules/web_infrastructure/supervisorctl.py @@ -75,7 +75,9 @@ notes: - When C(state) = I(present), the module will call C(supervisorctl reread) then C(supervisorctl add) if the program/group does not exist. - When C(state) = I(restarted), the module will call C(supervisorctl update) then call C(supervisorctl restart). requirements: [ "supervisorctl" ] -author: Matt Wright, Aaron Wang +author: + - "Matt Wright (@mattupstate)" + - "Aaron Wang (@inetfuture) " ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/windows/win_feature.py b/lib/ansible/modules/windows/win_feature.py index ef344ee3b2..2d7a747cea 100644 --- a/lib/ansible/modules/windows/win_feature.py +++ b/lib/ansible/modules/windows/win_feature.py @@ -68,7 +68,9 @@ options: - no default: null aliases: [] -author: Paul Durivage / Trond Hindenes +author: + - "Paul Durivage (@angstwad)" + - "Trond Hindenes (@trondhindenes)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/windows/win_get_url.py b/lib/ansible/modules/windows/win_get_url.py index 10910cf605..585d3e2aa8 100644 --- a/lib/ansible/modules/windows/win_get_url.py +++ b/lib/ansible/modules/windows/win_get_url.py @@ -41,7 +41,7 @@ options: required: false default: yes aliases: [] -author: Paul Durivage +author: "Paul Durivage (@angstwad)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/windows/win_group.py b/lib/ansible/modules/windows/win_group.py index 2013b52be5..5e8b0adaaf 100644 --- a/lib/ansible/modules/windows/win_group.py +++ b/lib/ansible/modules/windows/win_group.py @@ -50,7 +50,7 @@ options: - absent default: present aliases: [] -author: Chris Hoffman +author: "Chris Hoffman (@chrishoffman)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/windows/win_msi.py b/lib/ansible/modules/windows/win_msi.py index 9eb6f1bafa..01f09709f5 100644 --- a/lib/ansible/modules/windows/win_msi.py +++ b/lib/ansible/modules/windows/win_msi.py @@ -45,7 +45,7 @@ options: description: - Path to a file created by installing the MSI to prevent from attempting to reinstall the package on every run -author: Matt Martz +author: "Matt Martz (@sivel)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/windows/win_ping.py b/lib/ansible/modules/windows/win_ping.py index de32877d61..ecb5149f8c 100644 --- a/lib/ansible/modules/windows/win_ping.py +++ b/lib/ansible/modules/windows/win_ping.py @@ -35,7 +35,7 @@ options: required: false default: 'pong' aliases: [] -author: Chris Church +author: "Chris Church (@cchurch)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/windows/win_service.py b/lib/ansible/modules/windows/win_service.py index c378be120b..1f0f6326e6 100644 --- a/lib/ansible/modules/windows/win_service.py +++ b/lib/ansible/modules/windows/win_service.py @@ -55,7 +55,7 @@ options: - restarted default: null aliases: [] -author: Chris Hoffman +author: "Chris Hoffman (@chrishoffman)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/windows/win_stat.py b/lib/ansible/modules/windows/win_stat.py index c98cd55f59..a933384e20 100644 --- a/lib/ansible/modules/windows/win_stat.py +++ b/lib/ansible/modules/windows/win_stat.py @@ -38,7 +38,7 @@ options: required: false default: yes aliases: [] -author: Chris Church +author: "Chris Church (@cchurch)" ''' EXAMPLES = ''' diff --git a/lib/ansible/modules/windows/win_user.py b/lib/ansible/modules/windows/win_user.py index b4fba4394c..1469799092 100644 --- a/lib/ansible/modules/windows/win_user.py +++ b/lib/ansible/modules/windows/win_user.py @@ -127,7 +127,9 @@ options: - query default: present aliases: [] -author: Paul Durivage / Chris Church +author: + - "Paul Durivage (@angstwad)" + - "Chris Church (@cchurch)" ''' EXAMPLES = '''