From 2a5f0bde8796bb366f06a39fab576c362eb048a5 Mon Sep 17 00:00:00 2001 From: Greg DeKoenigsberg Date: Mon, 15 Jun 2015 15:53:30 -0400 Subject: [PATCH] Proper author info for all remaining modules --- commands/command.py | 4 +++- commands/raw.py | 4 +++- commands/script.py | 4 +++- commands/shell.py | 4 +++- database/mysql/mysql_db.py | 2 +- database/mysql/mysql_user.py | 2 +- database/mysql/mysql_variables.py | 1 + database/postgresql/postgresql_db.py | 2 +- database/postgresql/postgresql_privs.py | 2 +- database/postgresql/postgresql_user.py | 2 +- files/acl.py | 2 +- files/assemble.py | 2 +- files/copy.py | 4 +++- files/fetch.py | 4 +++- files/file.py | 4 +++- files/ini_file.py | 2 +- files/lineinfile.py | 4 +++- files/replace.py | 2 +- files/stat.py | 2 +- files/synchronize.py | 2 +- files/template.py | 4 +++- files/unarchive.py | 2 +- files/xattr.py | 2 +- inventory/add_host.py | 4 +++- inventory/group_by.py | 2 +- network/basics/get_url.py | 2 +- network/basics/slurp.py | 4 +++- network/basics/uri.py | 2 +- packaging/language/easy_install.py | 2 +- packaging/language/gem.py | 4 +++- packaging/language/pip.py | 2 +- packaging/os/apt.py | 2 +- packaging/os/apt_key.py | 2 +- packaging/os/apt_repository.py | 2 +- packaging/os/apt_rpm.py | 2 +- packaging/os/redhat_subscription.py | 2 +- packaging/os/rhn_channel.py | 2 +- packaging/os/rpm_key.py | 2 +- packaging/os/yum.py | 4 +++- source_control/git.py | 4 +++- source_control/hg.py | 2 +- source_control/subversion.py | 2 +- system/authorized_key.py | 2 +- system/cron.py | 2 +- system/group.py | 2 +- system/hostname.py | 2 +- system/mount.py | 4 +++- system/ping.py | 4 +++- system/seboolean.py | 2 +- system/selinux.py | 2 +- system/service.py | 4 +++- system/setup.py | 4 +++- system/sysctl.py | 2 +- system/user.py | 2 +- utilities/helper/accelerate.py | 2 +- utilities/helper/fireball.py | 4 +++- utilities/logic/assert.py | 4 +++- utilities/logic/async_status.py | 4 +++- utilities/logic/debug.py | 4 +++- utilities/logic/fail.py | 2 +- utilities/logic/include_vars.py | 2 +- utilities/logic/pause.py | 2 +- utilities/logic/set_fact.py | 2 +- utilities/logic/wait_for.py | 5 ++++- web_infrastructure/apache2_module.py | 1 + web_infrastructure/django_manage.py | 2 +- web_infrastructure/htpasswd.py | 2 +- web_infrastructure/supervisorctl.py | 4 +++- windows/win_feature.py | 4 +++- windows/win_get_url.py | 2 +- windows/win_group.py | 2 +- windows/win_msi.py | 2 +- windows/win_ping.py | 2 +- windows/win_service.py | 2 +- windows/win_stat.py | 2 +- windows/win_user.py | 4 +++- 76 files changed, 129 insertions(+), 74 deletions(-) diff --git a/commands/command.py b/commands/command.py index 6baf35922c2..b0aa5a7b99f 100644 --- a/commands/command.py +++ b/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/commands/raw.py b/commands/raw.py index 87f2b5c4bdc..5305c978630 100644 --- a/commands/raw.py +++ b/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/commands/script.py b/commands/script.py index 01a1ae34e71..ccf15331a6c 100644 --- a/commands/script.py +++ b/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/commands/shell.py b/commands/shell.py index b63a21080ee..cccc90f05ff 100644 --- a/commands/shell.py +++ b/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/database/mysql/mysql_db.py b/database/mysql/mysql_db.py index a76c4526727..e9a530811d4 100644 --- a/database/mysql/mysql_db.py +++ b/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/database/mysql/mysql_user.py b/database/mysql/mysql_user.py index c6d34ea0635..244333901c3 100644 --- a/database/mysql/mysql_user.py +++ b/database/mysql/mysql_user.py @@ -120,7 +120,7 @@ notes: the file." requirements: [ "MySQLdb" ] -author: Mark Theunissen +author: "Mark Theunissen (@marktheunissen)" ''' EXAMPLES = """ diff --git a/database/mysql/mysql_variables.py b/database/mysql/mysql_variables.py index 199c5eb6eca..0b0face0328 100644 --- a/database/mysql/mysql_variables.py +++ b/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/database/postgresql/postgresql_db.py b/database/postgresql/postgresql_db.py index 4ce8e146ccd..469d68fa0fa 100644 --- a/database/postgresql/postgresql_db.py +++ b/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/database/postgresql/postgresql_privs.py b/database/postgresql/postgresql_privs.py index 22a565f6b65..10f2361bfb2 100644 --- a/database/postgresql/postgresql_privs.py +++ b/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/database/postgresql/postgresql_user.py b/database/postgresql/postgresql_user.py index 2998ab273f9..d3f6d81c360 100644 --- a/database/postgresql/postgresql_user.py +++ b/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/files/acl.py b/files/acl.py index 0c568ba59a5..0c924fee94c 100644 --- a/files/acl.py +++ b/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/files/assemble.py b/files/assemble.py index a66c82f432a..1f9a952d04a 100644 --- a/files/assemble.py +++ b/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/files/copy.py b/files/copy.py index e80ed805539..b7f333cead6 100644 --- a/files/copy.py +++ b/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/files/fetch.py b/files/fetch.py index 37ead3a7352..b8234374976 100644 --- a/files/fetch.py +++ b/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/files/file.py b/files/file.py index 329fe1e0263..55d3665028e 100644 --- a/files/file.py +++ b/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/files/ini_file.py b/files/ini_file.py index e247c265fc8..9242821ae9e 100644 --- a/files/ini_file.py +++ b/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/files/lineinfile.py b/files/lineinfile.py index e66bdc01131..fafb8470b50 100644 --- a/files/lineinfile.py +++ b/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/files/replace.py b/files/replace.py index a21d84cd8df..fa0142823ea 100644 --- a/files/replace.py +++ b/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/files/stat.py b/files/stat.py index 798a560369e..5f79874d9fd 100644 --- a/files/stat.py +++ b/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/files/synchronize.py b/files/synchronize.py index 2fb93e4cad3..7f934e4e6f4 100644 --- a/files/synchronize.py +++ b/files/synchronize.py @@ -163,7 +163,7 @@ notes: C(.rsync-filter) files to the source directory. -author: Timothy Appnel +author: "Timothy Appnel (@tima)" ''' EXAMPLES = ''' diff --git a/files/template.py b/files/template.py index 7ba072fcdc1..2feb599abdf 100644 --- a/files/template.py +++ b/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/files/unarchive.py b/files/unarchive.py index 625989ffdfb..386503cadd3 100644 --- a/files/unarchive.py +++ b/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/files/xattr.py b/files/xattr.py index 94115ae3b51..5e67e5e03a6 100644 --- a/files/xattr.py +++ b/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/inventory/add_host.py b/inventory/add_host.py index b28c6f90182..2ab76b4c16a 100644 --- a/inventory/add_host.py +++ b/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/inventory/group_by.py b/inventory/group_by.py index d09552e662c..f63bdf5912b 100644 --- a/inventory/group_by.py +++ b/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/network/basics/get_url.py b/network/basics/get_url.py index 2bf37e3b129..074bf8bb484 100644 --- a/network/basics/get_url.py +++ b/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/network/basics/slurp.py b/network/basics/slurp.py index a2130c354b2..f96434f5fd3 100644 --- a/network/basics/slurp.py +++ b/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/network/basics/uri.py b/network/basics/uri.py index 6138edbf94b..b7fa8282c83 100644 --- a/network/basics/uri.py +++ b/network/basics/uri.py @@ -144,7 +144,7 @@ options: # informational: requirements for nodes requirements: [ urlparse, httplib2 ] -author: Romeo Theriault +author: "Romeo Theriault (@romeotheriault)" ''' EXAMPLES = ''' diff --git a/packaging/language/easy_install.py b/packaging/language/easy_install.py index d566e003d81..017f6b818a6 100644 --- a/packaging/language/easy_install.py +++ b/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/packaging/language/gem.py b/packaging/language/gem.py index 54d06da7466..1d15763fbb7 100644 --- a/packaging/language/gem.py +++ b/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/packaging/language/pip.py b/packaging/language/pip.py index a0c70c1a187..b27e136689d 100644 --- a/packaging/language/pip.py +++ b/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/packaging/os/apt.py b/packaging/os/apt.py index 61e2fc3f039..09129a73fa5 100644 --- a/packaging/os/apt.py +++ b/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/packaging/os/apt_key.py b/packaging/os/apt_key.py index 2967646feff..d41664f121a 100644 --- a/packaging/os/apt_key.py +++ b/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/packaging/os/apt_repository.py b/packaging/os/apt_repository.py index 5153699c8bf..9d48edec7bb 100644 --- a/packaging/os/apt_repository.py +++ b/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/packaging/os/apt_rpm.py b/packaging/os/apt_rpm.py index a85c528a239..fec220e0512 100644 --- a/packaging/os/apt_rpm.py +++ b/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/packaging/os/redhat_subscription.py b/packaging/os/redhat_subscription.py index 4248f3923a9..1cfd8fc25a6 100644 --- a/packaging/os/redhat_subscription.py +++ b/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/packaging/os/rhn_channel.py b/packaging/os/rhn_channel.py index 42d61f36e66..0071183158e 100644 --- a/packaging/os/rhn_channel.py +++ b/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/packaging/os/rpm_key.py b/packaging/os/rpm_key.py index f132d552506..1b38da3823b 100644 --- a/packaging/os/rpm_key.py +++ b/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/packaging/os/yum.py b/packaging/os/yum.py index 9490a15b15d..36fc96f6cea 100644 --- a/packaging/os/yum.py +++ b/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/source_control/git.py b/source_control/git.py index d1ed929a68e..369430211f3 100644 --- a/source_control/git.py +++ b/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/source_control/hg.py b/source_control/hg.py index d83215fabe1..47b23d26fd5 100644 --- a/source_control/hg.py +++ b/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/source_control/subversion.py b/source_control/subversion.py index 7d49d0a2272..e3ff6dbfba5 100644 --- a/source_control/subversion.py +++ b/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/system/authorized_key.py b/system/authorized_key.py index 458b94dff04..bb223acbe4d 100644 --- a/system/authorized_key.py +++ b/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/system/cron.py b/system/cron.py index cfb254acee4..b694bab8f20 100644 --- a/system/cron.py +++ b/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/system/group.py b/system/group.py index 83ea410b0b1..d952cb5c28c 100644 --- a/system/group.py +++ b/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/system/hostname.py b/system/hostname.py index b90b0441595..882402a5e21 100644 --- a/system/hostname.py +++ b/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/system/mount.py b/system/mount.py index e11d497220b..1564d0999f4 100644 --- a/system/mount.py +++ b/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/system/ping.py b/system/ping.py index b098d0054cd..bea7fb22f1d 100644 --- a/system/ping.py +++ b/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/system/seboolean.py b/system/seboolean.py index 9799e71636a..3a150d05a20 100644 --- a/system/seboolean.py +++ b/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/system/selinux.py b/system/selinux.py index 7f88a4a47a8..2debb95a475 100644 --- a/system/selinux.py +++ b/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/system/service.py b/system/service.py index 3299b614d52..763553db124 100644 --- a/system/service.py +++ b/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/system/setup.py b/system/setup.py index 486304230bf..2fbe71e260a 100644 --- a/system/setup.py +++ b/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/system/sysctl.py b/system/sysctl.py index c5a68685053..e48d5df74c5 100644 --- a/system/sysctl.py +++ b/system/sysctl.py @@ -71,7 +71,7 @@ options: default: False notes: [] requirements: [] -author: David "DaviXX" CHANIAL +author: "David CHANIAL (@davixx) " ''' EXAMPLES = ''' diff --git a/system/user.py b/system/user.py index dd141565bde..7c3fa4c8594 100644 --- a/system/user.py +++ b/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/utilities/helper/accelerate.py b/utilities/helper/accelerate.py index 726195d72e4..8ae8ab263be 100644 --- a/utilities/helper/accelerate.py +++ b/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/utilities/helper/fireball.py b/utilities/helper/fireball.py index 43760969a89..97b4acc85a0 100644 --- a/utilities/helper/fireball.py +++ b/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/utilities/logic/assert.py b/utilities/logic/assert.py index f5963d60cd7..e9e359f421a 100644 --- a/utilities/logic/assert.py +++ b/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/utilities/logic/async_status.py b/utilities/logic/async_status.py index f991b50064b..8b134c94a7b 100644 --- a/utilities/logic/async_status.py +++ b/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/utilities/logic/debug.py b/utilities/logic/debug.py index 2df68ca0830..5142709dbe0 100644 --- a/utilities/logic/debug.py +++ b/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/utilities/logic/fail.py b/utilities/logic/fail.py index 23f5b83668c..75a7c81d1cf 100644 --- a/utilities/logic/fail.py +++ b/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/utilities/logic/include_vars.py b/utilities/logic/include_vars.py index 4c7c39d9035..a6b2b5b152f 100644 --- a/utilities/logic/include_vars.py +++ b/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/utilities/logic/pause.py b/utilities/logic/pause.py index 6e8a83afe61..f1d10bf017f 100644 --- a/utilities/logic/pause.py +++ b/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/utilities/logic/set_fact.py b/utilities/logic/set_fact.py index f9124ab0ea5..f05dbf76795 100644 --- a/utilities/logic/set_fact.py +++ b/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/utilities/logic/wait_for.py b/utilities/logic/wait_for.py index 4aa5bc78281..95653b56d3e 100644 --- a/utilities/logic/wait_for.py +++ b/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/web_infrastructure/apache2_module.py b/web_infrastructure/apache2_module.py index 817e782aa76..ec9a8985e60 100644 --- a/web_infrastructure/apache2_module.py +++ b/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/web_infrastructure/django_manage.py b/web_infrastructure/django_manage.py index 46ebb2fb8f1..4dce581fa80 100644 --- a/web_infrastructure/django_manage.py +++ b/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/web_infrastructure/htpasswd.py b/web_infrastructure/htpasswd.py index 4a72ea37fec..fce8b062d1c 100644 --- a/web_infrastructure/htpasswd.py +++ b/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/web_infrastructure/supervisorctl.py b/web_infrastructure/supervisorctl.py index ef86eec26a7..47d341c9e7b 100644 --- a/web_infrastructure/supervisorctl.py +++ b/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/windows/win_feature.py b/windows/win_feature.py index ef344ee3b22..2d7a747cea0 100644 --- a/windows/win_feature.py +++ b/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/windows/win_get_url.py b/windows/win_get_url.py index 10910cf605e..585d3e2aa81 100644 --- a/windows/win_get_url.py +++ b/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/windows/win_group.py b/windows/win_group.py index 2013b52be53..5e8b0adaaf2 100644 --- a/windows/win_group.py +++ b/windows/win_group.py @@ -50,7 +50,7 @@ options: - absent default: present aliases: [] -author: Chris Hoffman +author: "Chris Hoffman (@chrishoffman)" ''' EXAMPLES = ''' diff --git a/windows/win_msi.py b/windows/win_msi.py index 9eb6f1bafa5..01f09709f57 100644 --- a/windows/win_msi.py +++ b/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/windows/win_ping.py b/windows/win_ping.py index de32877d615..ecb5149f8c3 100644 --- a/windows/win_ping.py +++ b/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/windows/win_service.py b/windows/win_service.py index c378be120b1..1f0f6326e65 100644 --- a/windows/win_service.py +++ b/windows/win_service.py @@ -55,7 +55,7 @@ options: - restarted default: null aliases: [] -author: Chris Hoffman +author: "Chris Hoffman (@chrishoffman)" ''' EXAMPLES = ''' diff --git a/windows/win_stat.py b/windows/win_stat.py index c98cd55f599..a933384e20b 100644 --- a/windows/win_stat.py +++ b/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/windows/win_user.py b/windows/win_user.py index 82bcf0897ec..376ff487fb3 100644 --- a/windows/win_user.py +++ b/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 = '''