Legacy variable usage removed

This commit is contained in:
Michael DeHaan 2013-07-19 09:40:00 -04:00
parent eb560fb7b8
commit 7cf87d7a3c

View file

@ -37,22 +37,13 @@ options:
message. message.
required: false required: false
default: "Hello world!" default: "Hello world!"
fail:
description:
- A boolean that indicates whether the debug module should fail or not.
required: false
default: "no"
choices: [ "yes", "no" ]
author: Dag Wieers author: Dag Wieers
''' '''
EXAMPLES = ''' EXAMPLES = '''
# Example that prints the loopback address and gateway for each host # Example that prints the loopback address and gateway for each host
- debug: msg="System $inventory_hostname has uuid $ansible_product_uuid" - debug: msg="System {{ inventory_hostname }} has uuid {{ ansible_product_uuid }}"
- debug: msg="System $inventory_hostname lacks a gateway" fail=yes - debug: msg="System {{ inventory_hostname }} has gateway {{ ansible_default_ipv4.gateway }}"
only_if: "is_unset('${ansible_default_ipv4.gateway}')" when: ansible_default_ipv4.gateway is defined
- debug: msg="System $inventory_hostname has gateway ${ansible_default_ipv4.gateway}"
only_if: "is_set('${ansible_default_ipv4.gateway}')"
''' '''