diff --git a/add_host b/add_host index 4abae8fe473..461928f090f 100644 --- a/add_host +++ b/add_host @@ -7,7 +7,7 @@ short_description: add a host (and alternatively a group) to the ansible-playboo description: - Use variables to create new hosts and groups in inventory for use in later plays of the same playbook. Takes variables so you can define the new hosts more fully. -version_added: 0.9 +version_added: "0.9" options: name: description: diff --git a/apt_key b/apt_key index ffeea163bca..de4ada8c399 100644 --- a/apt_key +++ b/apt_key @@ -23,7 +23,7 @@ DOCUMENTATION = ''' --- module: apt_key author: Jayson Vantuyl & others -version_added: 1.0 +version_added: "1.0" short_description: Add or remove an apt key description: - Add or remove an I(apt) key, optionally downloading it diff --git a/copy b/copy index cc5fb732410..5f3f132a670 100644 --- a/copy +++ b/copy @@ -36,9 +36,9 @@ options: default: null aliases: [] content: - version_added: 1.1 + version_added: "1.1" description: - - When used instead of 'src', sets the contents of a file directly to the specified value. (New in 1.1). + - When used instead of 'src', sets the contents of a file directly to the specified value. required: false default: null dest: diff --git a/easy_install b/easy_install index a4565ce5d71..2f0feaebeb0 100644 --- a/easy_install +++ b/easy_install @@ -40,7 +40,7 @@ options: required: false default: null virtualenv_site_packages: - version_added: 1.1 + version_added: "1.1" description: - Whether the virtual environment will inherit packages from the global site-packages directory. Note that if this setting is @@ -51,7 +51,7 @@ options: default: "no" choices: [ "yes", "no" ] virtualenv_command: - version_added: 1.1 + version_added: "1.1" description: - The command to create the virtual environment with. For example C(pyvenv), C(virtualenv), C(virtualenv2). diff --git a/fetch b/fetch index c92a8b5b0f0..5a1f20fa6c7 100644 --- a/fetch +++ b/fetch @@ -28,9 +28,9 @@ options: required: true default: null fail_on_missing: - version_added: 1.1 + version_added: "1.1" description: - - Makes it fails when the source file is missing. (Option is new in 1.1) + - Makes it fails when the source file is missing. required: false choices: [ "yes", "no" ] default: "no" diff --git a/git b/git index e08b5feea13..1f4e312332a 100644 --- a/git +++ b/git @@ -22,7 +22,7 @@ DOCUMENTATION = ''' --- module: git author: Michael DeHaan -version_added: 0.0.1 +version_added: "0.0.1" short_description: Deploy software (or files) from git checkouts description: - Manage I(git) checkouts of repositories to deploy files or software. diff --git a/group b/group index 8183a4cc70d..5d83fc67efb 100644 --- a/group +++ b/group @@ -22,7 +22,7 @@ DOCUMENTATION = ''' --- module: group author: Stephen Fromm -version_added: 0.0.2 +version_added: "0.0.2" short_description: Add or remove groups requirements: [ groupadd, groupdel, groupmod ] description: diff --git a/group_by b/group_by index 4a1609ec553..a8e6b83574a 100644 --- a/group_by +++ b/group_by @@ -6,7 +6,7 @@ module: group_by short_description: Create Ansible groups based on facts description: - Use facts to create ad-hoc groups that can be used later in a playbook. -version_added: 0.9 +version_added: "0.9" options: key: description: diff --git a/lineinfile b/lineinfile index 355251c3b79..b4be012ea75 100644 --- a/lineinfile +++ b/lineinfile @@ -64,7 +64,7 @@ options: required: false default: "no" choices: [ "yes", "no" ] - version_added: 1.1 + version_added: "1.1" description: - Used with C(state=present). If set, line can contain backreferences (both positional and named) that will get populated if the regexp @@ -84,7 +84,7 @@ options: choices: [ 'EOF', '*regex*' ] insertbefore: required: false - version_added: 1.1 + version_added: "1.1" description: - Used with C(state=present). If specified, the line will be inserted before the specified regular expression. A value is available; diff --git a/nagios b/nagios index 64820b46f6b..86db27f5cbf 100644 --- a/nagios +++ b/nagios @@ -25,7 +25,7 @@ description: - You can specify multiple services at once by separating them with commas, .e.g., C(services=httpd,nfs,puppet). - When specifying what service to handle there is a special service value, I(host), which will handle alerts/downtime for the I(host itself), e.g., C(service=host). This keyword may not be given with other services at the same time. I(Setting alerts/downtime for a host does not affect alerts/downtime for any of the services running on it.) To schedule downtime for all services on particular host use keyword "all", e.g., C(service=all). - When using the M(nagios) module you will need to specify your Nagios server using the C(delegate_to) parameter. -version_added: 0.7 +version_added: "0.7" options: action: description: diff --git a/openbsd_pkg b/openbsd_pkg index acb5da3f01b..11556e34a20 100644 --- a/openbsd_pkg +++ b/openbsd_pkg @@ -24,7 +24,7 @@ DOCUMENTATION = ''' --- module: openbsd_pkg author: Patrik Lundin -version_added: 1.1 +version_added: "1.1" short_description: Manage packages on OpenBSD. description: - Manage packages on OpenBSD using the pkg tools. diff --git a/pause b/pause index c710f499269..92cda0719fc 100644 --- a/pause +++ b/pause @@ -8,7 +8,7 @@ description: - Pauses playbook execution for a set amount of time, or until a prompt is acknowledged. All parameters are optional. The default behavior is to pause with a prompt. - "You can use C(ctrl+c) if you wish to advance a pause earlier than it is set to expire or if you need to abort a playbook run entirely. To continue early: press C(ctrl+c) and then C(c). To abort a playbook: press C(ctrl+c) and then C(a)." - "The pause module integrates into async/parallelized playbooks without any special considerations (see also: Rolling Updates). When using pauses with the C(serial) playbook parameter (as in rolling updates) you are only prompted once for the current group of hosts." -version_added: 0.8 +version_added: "0.8" options: minutes: description: diff --git a/pip b/pip index bd25d89e20b..06314c6ec35 100644 --- a/pip +++ b/pip @@ -50,7 +50,7 @@ options: required: false default: null virtualenv_site_packages: - version_added: 1.0 + version_added: "1.0" description: - Whether the virtual environment will inherit packages from the global site-packages directory. Note that if this setting is @@ -61,7 +61,7 @@ options: default: "no" choices: [ "yes", "no" ] virtualenv_command: - version_aded: 1.1 + version_aded: "1.1" description: - The command to create the virtual environment with. For example C(pyvenv), C(virtualenv), C(virtualenv2). diff --git a/rabbitmq_parameter b/rabbitmq_parameter index 6ca2df9897f..96962d9638b 100644 --- a/rabbitmq_parameter +++ b/rabbitmq_parameter @@ -24,7 +24,7 @@ module: rabbitmq_parameter short_description: Adds or removes parameters to RabbitMQ description: - Manage dynamic, cluster-wide parameters for RabbitMQ -version_added: '1.1' +version_added: "1.1" author: Chris Hoffman options: component: diff --git a/rabbitmq_plugin b/rabbitmq_plugin index fff1d78c81c..3a2933a18c2 100644 --- a/rabbitmq_plugin +++ b/rabbitmq_plugin @@ -24,7 +24,7 @@ module: rabbitmq_plugin short_description: Adds or removes users to RabbitMQ description: - Enables or disables RabbitMQ plugins -version_added: 1.1 +version_added: "1.1" author: Chris Hoffman options: names: diff --git a/rabbitmq_user b/rabbitmq_user index 5052c81e5ac..ee4c7550e00 100644 --- a/rabbitmq_user +++ b/rabbitmq_user @@ -24,7 +24,7 @@ module: rabbitmq_user short_description: Adds or removes users to RabbitMQ description: - Add or remove users to RabbitMQ and assign permissions -version_added: 1.1 +version_added: "1.1" author: Chris Hoffman options: user: diff --git a/rabbitmq_vhost b/rabbitmq_vhost index 268d0325da2..9ebcc207f8c 100644 --- a/rabbitmq_vhost +++ b/rabbitmq_vhost @@ -25,8 +25,8 @@ module: rabbitmq_vhost short_description: Manage the state of a virtual host in RabbitMQ description: - Manage the state of a virtual host in RabbitMQ -version_added: 1.1 -author: Chris Hoffman +version_added: "1.1" +author: Chris Hoffman options: name: description: diff --git a/rhn_channel b/rhn_channel index 1d45f978b50..f49693cf3db 100755 --- a/rhn_channel +++ b/rhn_channel @@ -6,7 +6,7 @@ module: rhn_channel short_description: Adds or removes Red Hat software channels description: - Adds or removes Red Hat software channels -version_added: '1.1' +version_added: "1.1" author: Vincent Van der Kussen notes: - this module fetches the system id from RHN. diff --git a/service b/service index c51975ac32a..08f5d8ef491 100644 --- a/service +++ b/service @@ -22,7 +22,7 @@ DOCUMENTATION = ''' --- module: service author: Michael DeHaan -version_added: 0.1 +version_added: "0.1" short_description: Manage services. description: - Controls services on remote hosts. diff --git a/setup b/setup index 14577992ab5..7493aa5e40a 100644 --- a/setup +++ b/setup @@ -35,7 +35,7 @@ module: setup short_description: Gathers facts about remote hosts options: filter: - version_added: 1.1 + version_added: "1.1" description: - if supplied, only return facts that match this shell-style (fnmatch) wildcard. required: false diff --git a/svr4pkg b/svr4pkg index 44c764a04d7..9bab2c10a7c 100644 --- a/svr4pkg +++ b/svr4pkg @@ -29,7 +29,7 @@ description: as a legacy feature in Solaris 11. - Note that this is a very basic packaging system. It will not enforce dependencies on install or remove. -version_added: 0.9 +version_added: "0.9" author: Boyd Adamson options: name: diff --git a/user b/user index 64a3a2ede14..68d60d837a0 100644 --- a/user +++ b/user @@ -22,7 +22,7 @@ DOCUMENTATION = ''' --- module: user author: Stephen Fromm -version_added: 0.2 +version_added: "0.2" short_description: Manage user accounts requirements: [ useradd, userdel, usermod ] description: @@ -48,7 +48,7 @@ options: description: - Optionally when used with the -u option, this option allows to change the user ID to a non-unique value. - (New in 1.1) + version_added: "1.1" group: required: false description: