diff --git a/plugins/callback/diy.py b/plugins/callback/diy.py index 2f6603cf63..7454a05724 100644 --- a/plugins/callback/diy.py +++ b/plugins/callback/diy.py @@ -629,7 +629,7 @@ playbook.yml: > gather_facts: no tasks: - name: Default plugin output - debug: + ansible.builtin.debug: msg: default plugin output - name: Override from play vars @@ -687,11 +687,11 @@ playbook.yml: > tasks: - name: Custom banner with default plugin result output - debug: + ansible.builtin.debug: msg: "default plugin output: result example" - name: Override from task vars - debug: + ansible.builtin.debug: msg: "example {{ two }}" changed_when: true vars: @@ -703,14 +703,14 @@ playbook.yml: > ansible_callback_diy_runner_on_ok_msg_color: "{{ 'yellow' if ansible_callback_diy.result.is_changed else 'bright green' }}" - name: Suppress output - debug: + ansible.builtin.debug: msg: i should not be displayed vars: ansible_callback_diy_playbook_on_task_start_msg: "" ansible_callback_diy_runner_on_ok_msg: "" - name: Using alias vars (see ansible.cfg) - debug: + ansible.builtin.debug: msg: when: False vars: @@ -719,13 +719,13 @@ playbook.yml: > on_skipped_msg_color: white - name: Just stdout - command: echo some stdout + ansible.builtin.command: echo some stdout vars: ansible_callback_diy_playbook_on_task_start_msg: "\n" ansible_callback_diy_runner_on_ok_msg: "{{ ansible_callback_diy.result.output.stdout }}\n" - name: Multiline output - debug: + ansible.builtin.debug: msg: "{{ multiline }}" vars: ansible_callback_diy_playbook_on_task_start_msg: "\nDIY output(via task vars): task example: {{ ansible_callback_diy.task.name }}" @@ -738,7 +738,7 @@ playbook.yml: > ansible_callback_diy_playbook_on_task_start_msg_color: bright blue - name: Indentation - debug: + ansible.builtin.debug: msg: "{{ item.msg }}" with_items: - { indent: 1, msg: one., color: red } @@ -751,14 +751,14 @@ playbook.yml: > ansible_callback_diy_runner_on_ok_msg_color: bright green - name: Using lookup and template as file - shell: "echo {% raw %}'output from {{ file_name }}'{% endraw %} > {{ file_name }}" + ansible.builtin.shell: "echo {% raw %}'output from {{ file_name }}'{% endraw %} > {{ file_name }}" vars: ansible_callback_diy_playbook_on_task_start_msg: "\nDIY output(via task vars): task example: {{ ansible_callback_diy.task.name }}" file_name: diy_file_template_example ansible_callback_diy_runner_on_ok_msg: "{{ lookup('template', file_name) }}" - name: 'Look at top level vars available to the "runner_on_ok" callback' - debug: + ansible.builtin.debug: msg: '' vars: ansible_callback_diy_playbook_on_task_start_msg: "\nDIY output(via task vars): task example: {{ ansible_callback_diy.task.name }}" @@ -771,7 +771,7 @@ playbook.yml: > ansible_callback_diy_runner_on_ok_msg_color: white - name: 'Look at event data available to the "runner_on_ok" callback' - debug: + ansible.builtin.debug: msg: '' vars: ansible_callback_diy_playbook_on_task_start_msg: "\nDIY output(via task vars): task example: {{ ansible_callback_diy.task.name }}" diff --git a/plugins/callback/selective.py b/plugins/callback/selective.py index 0220573b8b..01364e98bb 100644 --- a/plugins/callback/selective.py +++ b/plugins/callback/selective.py @@ -30,8 +30,8 @@ DOCUMENTATION = ''' ''' EXAMPLES = """ - - debug: msg="This will not be printed" - - debug: msg="But this will" + - ansible.builtin.debug: msg="This will not be printed" + - ansible.builtin.debug: msg="But this will" tags: [print_action] """ diff --git a/plugins/doc_fragments/ovirt_facts.py b/plugins/doc_fragments/ovirt_facts.py index f1ad9ae07d..99d79d9db1 100644 --- a/plugins/doc_fragments/ovirt_facts.py +++ b/plugins/doc_fragments/ovirt_facts.py @@ -54,5 +54,5 @@ requirements: notes: - "In order to use this module you have to install oVirt Python SDK. To ensure it's installed with correct version you can create the following task: - pip: name=ovirt-engine-sdk-python version=4.3.0" + ansible.builtin.pip: name=ovirt-engine-sdk-python version=4.3.0" ''' diff --git a/plugins/filter/json_query.py b/plugins/filter/json_query.py index d1da71b476..123d929bba 100644 --- a/plugins/filter/json_query.py +++ b/plugins/filter/json_query.py @@ -29,7 +29,7 @@ except ImportError: def json_query(data, expr): '''Query data using jmespath query language ( http://jmespath.org ). Example: - - debug: msg="{{ instance | json_query(tagged_instances[*].block_device_mapping.*.volume_id') }}" + - ansible.builtin.debug: msg="{{ instance | json_query(tagged_instances[*].block_device_mapping.*.volume_id') }}" ''' if not HAS_LIB: raise AnsibleError('You need to install "jmespath" prior to running ' diff --git a/plugins/lookup/cartesian.py b/plugins/lookup/cartesian.py index a98b305806..25d0cf3bb0 100644 --- a/plugins/lookup/cartesian.py +++ b/plugins/lookup/cartesian.py @@ -20,10 +20,10 @@ DOCUMENTATION = ''' EXAMPLES = """ - name: Example of the change in the description - debug: msg="{{ lookup('cartesian', [1,2,3], [a, b])}}" + ansible.builtin.debug: msg="{{ lookup('cartesian', [1,2,3], [a, b])}}" - name: loops over the cartesian product of the supplied lists - debug: msg="{{item}}" + ansible.builtin.debug: msg="{{item}}" with_cartesian: - "{{list1}}" - "{{list2}}" diff --git a/plugins/lookup/chef_databag.py b/plugins/lookup/chef_databag.py index 2d831731ef..7d3b55c4d3 100644 --- a/plugins/lookup/chef_databag.py +++ b/plugins/lookup/chef_databag.py @@ -27,7 +27,7 @@ DOCUMENTATION = ''' ''' EXAMPLES = """ - - debug: + - ansible.builtin.debug: msg: "{{ lookup('chef_databag', 'name=data_bag_name item=data_bag_item') }}" """ diff --git a/plugins/lookup/consul_kv.py b/plugins/lookup/consul_kv.py index 3b28b9c819..ecd053fdfa 100644 --- a/plugins/lookup/consul_kv.py +++ b/plugins/lookup/consul_kv.py @@ -78,19 +78,19 @@ DOCUMENTATION = ''' ''' EXAMPLES = """ - - debug: + - ansible.builtin.debug: msg: 'key contains {{item}}' with_consul_kv: - 'key/to/retrieve' - name: Parameters can be provided after the key be more specific about what to retrieve - debug: + ansible.builtin.debug: msg: 'key contains {{item}}' with_consul_kv: - 'key/to recurse=true token=E6C060A9-26FB-407A-B83E-12DDAFCB4D98' - name: retrieving a KV from a remote cluster on non default port - debug: + ansible.builtin.debug: msg: "{{ lookup('consul_kv', 'my/key', host='10.10.10.10', port='2000') }}" """ diff --git a/plugins/lookup/credstash.py b/plugins/lookup/credstash.py index b712247e10..a4d1d2658a 100644 --- a/plugins/lookup/credstash.py +++ b/plugins/lookup/credstash.py @@ -44,16 +44,16 @@ DOCUMENTATION = ''' EXAMPLES = """ - name: first use credstash to store your secrets - shell: credstash put my-github-password secure123 + ansible.builtin.shell: credstash put my-github-password secure123 - name: "Test credstash lookup plugin -- get my github password" - debug: msg="Credstash lookup! {{ lookup('credstash', 'my-github-password') }}" + ansible.builtin.debug: msg="Credstash lookup! {{ lookup('credstash', 'my-github-password') }}" - name: "Test credstash lookup plugin -- get my other password from us-west-1" - debug: msg="Credstash lookup! {{ lookup('credstash', 'my-other-password', region='us-west-1') }}" + ansible.builtin.debug: msg="Credstash lookup! {{ lookup('credstash', 'my-other-password', region='us-west-1') }}" - name: "Test credstash lookup plugin -- get the company's github password" - debug: msg="Credstash lookup! {{ lookup('credstash', 'company-github-password', table='company-passwords') }}" + ansible.builtin.debug: msg="Credstash lookup! {{ lookup('credstash', 'company-github-password', table='company-passwords') }}" - name: Example play using the 'context' feature hosts: localhost @@ -64,10 +64,10 @@ EXAMPLES = """ tasks: - name: "Test credstash lookup plugin -- get the password with a context passed as a variable" - debug: msg="{{ lookup('credstash', 'some-password', context=context) }}" + ansible.builtin.debug: msg="{{ lookup('credstash', 'some-password', context=context) }}" - name: "Test credstash lookup plugin -- get the password with a context defined here" - debug: msg="{{ lookup('credstash', 'some-password', context=dict(app='my_app', environment='production')) }}" + ansible.builtin.debug: msg="{{ lookup('credstash', 'some-password', context=dict(app='my_app', environment='production')) }}" """ RETURN = """ diff --git a/plugins/lookup/cyberarkpassword.py b/plugins/lookup/cyberarkpassword.py index 8da79850f7..b3661bae2b 100644 --- a/plugins/lookup/cyberarkpassword.py +++ b/plugins/lookup/cyberarkpassword.py @@ -36,7 +36,7 @@ DOCUMENTATION = ''' EXAMPLES = """ - name: passing options to the lookup - debug: msg={{ lookup("cyberarkpassword", cyquery)}} + ansible.builtin.debug: msg={{ lookup("cyberarkpassword", cyquery)}} vars: cyquery: appid: "app_ansible" @@ -45,7 +45,7 @@ EXAMPLES = """ - name: used in a loop - debug: msg={{item}} + ansible.builtin.debug: msg={{item}} with_cyberarkpassword: appid: 'app_ansible' query: 'safe=CyberArk_Passwords;folder=root;object=AdminPass' diff --git a/plugins/lookup/dig.py b/plugins/lookup/dig.py index 5a25fe7e46..8f39330522 100644 --- a/plugins/lookup/dig.py +++ b/plugins/lookup/dig.py @@ -44,24 +44,24 @@ DOCUMENTATION = ''' EXAMPLES = """ - name: Simple A record (IPV4 address) lookup for example.com - debug: msg="{{ lookup('dig', 'example.com.')}}" + ansible.builtin.debug: msg="{{ lookup('dig', 'example.com.')}}" - name: "The TXT record for example.org." - debug: msg="{{ lookup('dig', 'example.org.', 'qtype=TXT') }}" + ansible.builtin.debug: msg="{{ lookup('dig', 'example.org.', 'qtype=TXT') }}" - name: "The TXT record for example.org, alternative syntax." - debug: msg="{{ lookup('dig', 'example.org./TXT') }}" + ansible.builtin.debug: msg="{{ lookup('dig', 'example.org./TXT') }}" - name: use in a loop - debug: msg="MX record for gmail.com {{ item }}" + ansible.builtin.debug: msg="MX record for gmail.com {{ item }}" with_items: "{{ lookup('dig', 'gmail.com./MX', wantlist=True) }}" -- debug: msg="Reverse DNS for 192.0.2.5 is {{ lookup('dig', '192.0.2.5/PTR') }}" -- debug: msg="Reverse DNS for 192.0.2.5 is {{ lookup('dig', '5.2.0.192.in-addr.arpa./PTR') }}" -- debug: msg="Reverse DNS for 192.0.2.5 is {{ lookup('dig', '5.2.0.192.in-addr.arpa.', 'qtype=PTR') }}" -- debug: msg="Querying 198.51.100.23 for IPv4 address for example.com. produces {{ lookup('dig', 'example.com', '@198.51.100.23') }}" +- ansible.builtin.debug: msg="Reverse DNS for 192.0.2.5 is {{ lookup('dig', '192.0.2.5/PTR') }}" +- ansible.builtin.debug: msg="Reverse DNS for 192.0.2.5 is {{ lookup('dig', '5.2.0.192.in-addr.arpa./PTR') }}" +- ansible.builtin.debug: msg="Reverse DNS for 192.0.2.5 is {{ lookup('dig', '5.2.0.192.in-addr.arpa.', 'qtype=PTR') }}" +- ansible.builtin.debug: msg="Querying 198.51.100.23 for IPv4 address for example.com. produces {{ lookup('dig', 'example.com', '@198.51.100.23') }}" -- debug: msg="XMPP service for gmail.com. is available at {{ item.target }} on port {{ item.port }}" +- ansible.builtin.debug: msg="XMPP service for gmail.com. is available at {{ item.target }} on port {{ item.port }}" with_items: "{{ lookup('dig', '_xmpp-server._tcp.gmail.com./SRV', 'flat=0', wantlist=True) }}" """ diff --git a/plugins/lookup/dnstxt.py b/plugins/lookup/dnstxt.py index 10f97bfc0e..955c68dbc5 100644 --- a/plugins/lookup/dnstxt.py +++ b/plugins/lookup/dnstxt.py @@ -21,17 +21,17 @@ DOCUMENTATION = ''' EXAMPLES = """ - name: show txt entry - debug: msg="{{lookup('dnstxt', ['test.example.com'])}}" + ansible.builtin.debug: msg="{{lookup('dnstxt', ['test.example.com'])}}" - name: iterate over txt entries - debug: msg="{{item}}" + ansible.builtin.debug: msg="{{item}}" with_dnstxt: - 'test.example.com' - 'other.example.com' - 'last.example.com' - name: iterate of a comma delimited DNS TXT entry - debug: msg="{{item}}" + ansible.builtin.debug: msg="{{item}}" with_dnstxt: "{{lookup('dnstxt', ['test.example.com']).split(',')}}" """ diff --git a/plugins/lookup/dsv.py b/plugins/lookup/dsv.py index 6f89e1c17e..b56e8ec7cc 100644 --- a/plugins/lookup/dsv.py +++ b/plugins/lookup/dsv.py @@ -77,7 +77,7 @@ EXAMPLES = r""" vars: secret: "{{ lookup('community.general.dsv', '/test/secret') }}" tasks: - - debug: + - ansible.builtin.debug: msg: 'the password is {{ secret["data"]["password"] }}' """ diff --git a/plugins/lookup/etcd.py b/plugins/lookup/etcd.py index 59f8df9916..1823aecf66 100644 --- a/plugins/lookup/etcd.py +++ b/plugins/lookup/etcd.py @@ -54,13 +54,13 @@ DOCUMENTATION = ''' EXAMPLES = ''' - name: "a value from a locally running etcd" - debug: msg={{ lookup('etcd', 'foo/bar') }} + ansible.builtin.debug: msg={{ lookup('etcd', 'foo/bar') }} - name: "values from multiple folders on a locally running etcd" - debug: msg={{ lookup('etcd', 'foo', 'bar', 'baz') }} + ansible.builtin.debug: msg={{ lookup('etcd', 'foo', 'bar', 'baz') }} - name: "since Ansible 2.5 you can set server options inline" - debug: msg="{{ lookup('etcd', 'foo', version='v2', url='http://192.168.0.27:4001') }}" + ansible.builtin.debug: msg="{{ lookup('etcd', 'foo', version='v2', url='http://192.168.0.27:4001') }}" ''' RETURN = ''' @@ -82,7 +82,7 @@ from ansible.module_utils.urls import open_url # If etcd v2 running on host 192.168.1.21 on port 2379 # we can use the following in a playbook to retrieve /tfm/network/config key # -# - debug: msg={{lookup('etcd','/tfm/network/config', url='http://192.168.1.21:2379' , version='v2')}} +# - ansible.builtin.debug: msg={{lookup('etcd','/tfm/network/config', url='http://192.168.1.21:2379' , version='v2')}} # # Example Output: # diff --git a/plugins/lookup/etcd3.py b/plugins/lookup/etcd3.py index ef7f64a99a..c13ad5ae97 100644 --- a/plugins/lookup/etcd3.py +++ b/plugins/lookup/etcd3.py @@ -101,19 +101,19 @@ DOCUMENTATION = ''' EXAMPLES = ''' - name: "a value from a locally running etcd" - debug: + ansible.builtin.debug: msg: "{{ lookup('community.general.etcd3', 'foo/bar') }}" - name: "values from multiple folders on a locally running etcd" - debug: + ansible.builtin.debug: msg: "{{ lookup('community.general.etcd3', 'foo', 'bar', 'baz') }}" - name: "look for a key prefix" - debug: + ansible.builtin.debug: msg: "{{ lookup('community.general.etcd3', '/foo/bar', prefix=True) }}" - name: "connect to etcd3 with a client certificate" - debug: + ansible.builtin.debug: msg: "{{ lookup('community.general.etcd3', 'foo/bar', cert_cert='/etc/ssl/etcd/client.pem', cert_key='/etc/ssl/etcd/client.key') }}" ''' diff --git a/plugins/lookup/filetree.py b/plugins/lookup/filetree.py index 4cbe4a5ee9..9fbb8aa230 100644 --- a/plugins/lookup/filetree.py +++ b/plugins/lookup/filetree.py @@ -21,7 +21,7 @@ options: EXAMPLES = """ - name: Create directories - file: + ansible.builtin.file: path: /web/{{ item.path }} state: directory mode: '{{ item.mode }}' @@ -29,7 +29,7 @@ EXAMPLES = """ when: item.state == 'directory' - name: Template files (explicitly skip directories in order to use the 'src' attribute) - template: + ansible.builtin.template: src: '{{ item.src }}' dest: /web/{{ item.path }} mode: '{{ item.mode }}' @@ -37,7 +37,7 @@ EXAMPLES = """ when: item.state == 'file' - name: Recreate symlinks - file: + ansible.builtin.file: src: '{{ item.src }}' dest: /web/{{ item.path }} state: link diff --git a/plugins/lookup/flattened.py b/plugins/lookup/flattened.py index c88683d7cc..d2004806de 100644 --- a/plugins/lookup/flattened.py +++ b/plugins/lookup/flattened.py @@ -21,7 +21,7 @@ DOCUMENTATION = ''' EXAMPLES = """ - name: "'unnest' all elements into single list" - debug: msg="all in one list {{lookup('flattened', [1,2,3,[5,6]], [a,b,c], [[5,6,1,3], [34,a,b,c]])}}" + ansible.builtin.debug: msg="all in one list {{lookup('flattened', [1,2,3,[5,6]], [a,b,c], [[5,6,1,3], [34,a,b,c]])}}" """ RETURN = """ diff --git a/plugins/lookup/gcp_storage_file.py b/plugins/lookup/gcp_storage_file.py index 8155f7b22c..f8d3247ef8 100644 --- a/plugins/lookup/gcp_storage_file.py +++ b/plugins/lookup/gcp_storage_file.py @@ -29,7 +29,7 @@ extends_documentation_fragment: ''' EXAMPLES = ''' -- debug: msg="the value of foo.txt is {{ lookup('gcp_storage_file', +- ansible.builtin.debug: msg="the value of foo.txt is {{ lookup('gcp_storage_file', bucket='gcp-bucket', src='mydir/foo.txt', project='project-name', auth_kind='serviceaccount', service_account_file='/tmp/myserviceaccountfile.json') }}" ''' diff --git a/plugins/lookup/hashi_vault.py b/plugins/lookup/hashi_vault.py index a963984a12..921a7c40eb 100644 --- a/plugins/lookup/hashi_vault.py +++ b/plugins/lookup/hashi_vault.py @@ -161,79 +161,79 @@ DOCUMENTATION = """ """ EXAMPLES = """ -- debug: +- ansible.builtin.debug: msg: "{{ lookup('community.general.hashi_vault', 'secret=secret/hello:value token=c975b780-d1be-8016-866b-01d0f9b688a5 url=http://myvault:8200') }}" - name: Return all secrets from a path - debug: + ansible.builtin.debug: msg: "{{ lookup('community.general.hashi_vault', 'secret=secret/hello token=c975b780-d1be-8016-866b-01d0f9b688a5 url=http://myvault:8200') }}" - name: Vault that requires authentication via LDAP - debug: + ansible.builtin.debug: msg: "{{ lookup('community.general.hashi_vault', 'secret/hello:value auth_method=ldap mount_point=ldap username=myuser password=mypas') }}" - name: Vault that requires authentication via username and password - debug: + ansible.builtin.debug: msg: "{{ lookup('community.general.hashi_vault', 'secret=secret/hello:value auth_method=userpass username=myuser password=psw url=http://myvault:8200') }}" - name: Using an ssl vault - debug: + ansible.builtin.debug: msg: "{{ lookup('community.general.hashi_vault', 'secret=secret/hola:value token=c975b780-d1be-8016-866b-01d0f9b688a5 validate_certs=False') }}" - name: using certificate auth - debug: + ansible.builtin.debug: msg: "{{ lookup('community.general.hashi_vault', 'secret/hi:value token=xxxx url=https://myvault:8200 validate_certs=True cacert=/cacert/path/ca.pem') }}" - name: authenticate with a Vault app role - debug: + ansible.builtin.debug: msg: "{{ lookup('community.general.hashi_vault', 'secret=secret/hello:value auth_method=approle role_id=myroleid secret_id=mysecretid') }}" - name: Return all secrets from a path in a namespace - debug: + ansible.builtin.debug: msg: "{{ lookup('community.general.hashi_vault', 'secret=secret/hello token=c975b780-d1be-8016-866b-01d0f9b688a5 namespace=teama/admins') }}" # When using KV v2 the PATH should include "data" between the secret engine mount and path (e.g. "secret/data/:path") # see: https://www.vaultproject.io/api/secret/kv/kv-v2.html#read-secret-version - name: Return latest KV v2 secret from path - debug: + ansible.builtin.debug: msg: "{{ lookup('community.general.hashi_vault', 'secret=secret/data/hello token=my_vault_token url=http://myvault_url:8200') }}" # The following examples work in collection releases after community.general 0.2.0 - name: secret= is not required if secret is first - debug: + ansible.builtin.debug: msg: "{{ lookup('community.general.hashi_vault', 'secret/data/hello token= url=http://myvault_url:8200') }}" - name: options can be specified as parameters rather than put in term string - debug: + ansible.builtin.debug: msg: "{{ lookup('community.general.hashi_vault', 'secret/data/hello', token=my_token_var, url='http://myvault_url:8200') }}" # return_format (or its alias 'as') can control how secrets are returned to you - name: return secrets as a dict (default) set_fact: my_secrets: "{{ lookup('community.general.hashi_vault', 'secret/data/manysecrets', token=my_token_var, url='http://myvault_url:8200') }}" -- debug: +- ansible.builtin.debug: msg: "{{ my_secrets['secret_key'] }}" -- debug: +- ansible.builtin.debug: msg: "Secret '{{ item.key }}' has value '{{ item.value }}'" loop: "{{ my_secrets | dict2items }}" - name: return secrets as values only - debug: + ansible.builtin.debug: msg: "A secret value: {{ item }}" loop: "{{ query('community.general.hashi_vault', 'secret/data/manysecrets', token=my_token_var, url='http://myvault_url:8200', return_format='values') }}" - name: return raw secret from API, including metadata set_fact: my_secret: "{{ lookup('community.general.hashi_vault', 'secret/data/hello:value', token=my_token_var, url='http://myvault_url:8200', as='raw') }}" -- debug: +- ansible.builtin.debug: msg: "This is version {{ my_secret['metadata']['version'] }} of hello:value. The secret data is {{ my_secret['data']['data']['value'] }}" # AWS IAM authentication method # uses Ansible standard AWS options - name: authenticate with aws_iam_login - debug: + ansible.builtin.debug: msg: "{{ lookup('community.general.hashi_vault', 'secret/hello:value', auth_method='aws_iam_login' role_id='myroleid', profile=my_boto_profile) }}" """ diff --git a/plugins/lookup/hiera.py b/plugins/lookup/hiera.py index fdf9d123ff..3da2e48fc0 100644 --- a/plugins/lookup/hiera.py +++ b/plugins/lookup/hiera.py @@ -39,13 +39,13 @@ EXAMPLES = """ # All this examples depends on hiera.yml that describes the hierarchy - name: "a value from Hiera 'DB'" - debug: msg={{ lookup('hiera', 'foo') }} + ansible.builtin.debug: msg={{ lookup('hiera', 'foo') }} - name: "a value from a Hiera 'DB' on other environment" - debug: msg={{ lookup('hiera', 'foo environment=production') }} + ansible.builtin.debug: msg={{ lookup('hiera', 'foo environment=production') }} - name: "a value from a Hiera 'DB' for a concrete node" - debug: msg={{ lookup('hiera', 'foo fqdn=puppet01.localdomain') }} + ansible.builtin.debug: msg={{ lookup('hiera', 'foo fqdn=puppet01.localdomain') }} """ RETURN = """ diff --git a/plugins/lookup/keyring.py b/plugins/lookup/keyring.py index d39f556621..f1f7b294cf 100644 --- a/plugins/lookup/keyring.py +++ b/plugins/lookup/keyring.py @@ -18,7 +18,7 @@ DOCUMENTATION = ''' EXAMPLES = """ - name : output secrets to screen (BAD IDEA) - debug: + ansible.builtin.debug: msg: "Password: {{item}}" with_keyring: - 'servicename username' diff --git a/plugins/lookup/lastpass.py b/plugins/lookup/lastpass.py index bd946c0d71..ba025388e2 100644 --- a/plugins/lookup/lastpass.py +++ b/plugins/lookup/lastpass.py @@ -25,7 +25,7 @@ DOCUMENTATION = ''' EXAMPLES = """ - name: get 'custom_field' from lastpass entry 'entry-name' - debug: + ansible.builtin.debug: msg: "{{ lookup('lastpass', 'entry-name', field='custom_field') }}" """ diff --git a/plugins/lookup/lmdb_kv.py b/plugins/lookup/lmdb_kv.py index 82a3c909ea..6c5da9db1b 100644 --- a/plugins/lookup/lmdb_kv.py +++ b/plugins/lookup/lmdb_kv.py @@ -24,11 +24,11 @@ DOCUMENTATION = ''' EXAMPLES = """ - name: query LMDB for a list of country codes - debug: + ansible.builtin.debug: msg: "{{ query('lmdb_kv', 'nl', 'be', 'lu', db='jp.mdb') }}" - name: use list of values in a loop by key wildcard - debug: + ansible.builtin.debug: msg: "Hello from {{ item.0 }} a.k.a. {{ item.1 }}" vars: - lmdb_kv_db: jp.mdb diff --git a/plugins/lookup/manifold.py b/plugins/lookup/manifold.py index c6b55c0b9e..031b2f518f 100644 --- a/plugins/lookup/manifold.py +++ b/plugins/lookup/manifold.py @@ -40,11 +40,11 @@ DOCUMENTATION = ''' EXAMPLES = ''' - name: all available resources - debug: msg="{{ lookup('manifold', api_token='SecretToken') }}" + ansible.builtin.debug: msg="{{ lookup('manifold', api_token='SecretToken') }}" - name: all available resources for a specific project in specific team - debug: msg="{{ lookup('manifold', api_token='SecretToken', project='poject-1', team='team-2') }}" + ansible.builtin.debug: msg="{{ lookup('manifold', api_token='SecretToken', project='poject-1', team='team-2') }}" - name: two specific resources - debug: msg="{{ lookup('manifold', 'resource-1', 'resource-2') }}" + ansible.builtin.debug: msg="{{ lookup('manifold', 'resource-1', 'resource-2') }}" ''' RETURN = ''' diff --git a/plugins/lookup/onepassword.py b/plugins/lookup/onepassword.py index ad578c7881..7fde9abb34 100644 --- a/plugins/lookup/onepassword.py +++ b/plugins/lookup/onepassword.py @@ -55,26 +55,26 @@ DOCUMENTATION = ''' EXAMPLES = """ # These examples only work when already signed in to 1Password - name: Retrieve password for KITT when already signed in to 1Password - debug: + ansible.builtin.debug: var: lookup('onepassword', 'KITT') - name: Retrieve password for Wintermute when already signed in to 1Password - debug: + ansible.builtin.debug: var: lookup('onepassword', 'Tessier-Ashpool', section='Wintermute') - name: Retrieve username for HAL when already signed in to 1Password - debug: + ansible.builtin.debug: var: lookup('onepassword', 'HAL 9000', field='username', vault='Discovery') - name: Retrieve password for HAL when not signed in to 1Password - debug: + ansible.builtin.debug: var: lookup('onepassword' 'HAL 9000' subdomain='Discovery' master_password=vault_master_password) - name: Retrieve password for HAL when never signed in to 1Password - debug: + ansible.builtin.debug: var: lookup('onepassword' 'HAL 9000' subdomain='Discovery' diff --git a/plugins/lookup/onepassword_raw.py b/plugins/lookup/onepassword_raw.py index e77c7d4737..785caf4ee9 100644 --- a/plugins/lookup/onepassword_raw.py +++ b/plugins/lookup/onepassword_raw.py @@ -51,11 +51,11 @@ DOCUMENTATION = ''' EXAMPLES = """ - name: Retrieve all data about Wintermute - debug: + ansible.builtin.debug: var: lookup('onepassword_raw', 'Wintermute') - name: Retrieve all data about Wintermute when not signed in to 1Password - debug: + ansible.builtin.debug: var: lookup('onepassword_raw', 'Wintermute', subdomain='Turing', vault_password='DmbslfLvasjdl') """ diff --git a/plugins/lookup/passwordstore.py b/plugins/lookup/passwordstore.py index 05be98e2d0..5325503cd8 100644 --- a/plugins/lookup/passwordstore.py +++ b/plugins/lookup/passwordstore.py @@ -57,28 +57,28 @@ DOCUMENTATION = ''' EXAMPLES = """ # Debug is used for examples, BAD IDEA to show passwords on screen - name: Basic lookup. Fails if example/test doesn't exist - debug: + ansible.builtin.debug: msg: "{{ lookup('passwordstore', 'example/test')}}" - name: Create pass with random 16 character password. If password exists just give the password - debug: + ansible.builtin.debug: var: mypassword vars: mypassword: "{{ lookup('passwordstore', 'example/test create=true')}}" - name: Different size password - debug: + ansible.builtin.debug: msg: "{{ lookup('passwordstore', 'example/test create=true length=42')}}" - name: Create password and overwrite the password if it exists. As a bonus, this module includes the old password inside the pass file - debug: + ansible.builtin.debug: msg: "{{ lookup('passwordstore', 'example/test create=true overwrite=true')}}" - name: Create an alphanumeric password - debug: msg="{{ lookup('passwordstore', 'example/test create=true nosymbols=true') }}" + ansible.builtin.debug: msg="{{ lookup('passwordstore', 'example/test create=true nosymbols=true') }}" - name: Return the value for user in the KV pair user, username - debug: + ansible.builtin.debug: msg: "{{ lookup('passwordstore', 'example/test subkey=user')}}" - name: Return the entire password file content diff --git a/plugins/lookup/redis.py b/plugins/lookup/redis.py index 92933e0d2a..22207b71c5 100644 --- a/plugins/lookup/redis.py +++ b/plugins/lookup/redis.py @@ -46,17 +46,17 @@ DOCUMENTATION = ''' EXAMPLES = """ - name: query redis for somekey (default or configured settings used) - debug: msg="{{ lookup('redis', 'somekey') }}" + ansible.builtin.debug: msg="{{ lookup('redis', 'somekey') }}" - name: query redis for list of keys and non-default host and port - debug: msg="{{ lookup('redis', item, host='myredis.internal.com', port=2121) }}" + ansible.builtin.debug: msg="{{ lookup('redis', item, host='myredis.internal.com', port=2121) }}" loop: '{{list_of_redis_keys}}' - name: use list directly - debug: msg="{{ lookup('redis', 'key1', 'key2', 'key3') }}" + ansible.builtin.debug: msg="{{ lookup('redis', 'key1', 'key2', 'key3') }}" - name: use list directly with a socket - debug: msg="{{ lookup('redis', 'key1', 'key2', socket='/var/tmp/redis.sock') }}" + ansible.builtin.debug: msg="{{ lookup('redis', 'key1', 'key2', socket='/var/tmp/redis.sock') }}" """ diff --git a/plugins/lookup/shelvefile.py b/plugins/lookup/shelvefile.py index 9f2d49b3c1..b0e915c562 100644 --- a/plugins/lookup/shelvefile.py +++ b/plugins/lookup/shelvefile.py @@ -23,7 +23,7 @@ DOCUMENTATION = ''' EXAMPLES = """ - name: retrieve a string value corresponding to a key inside a Python shelve file - debug: msg="{{ lookup('shelvefile', 'file=path_to_some_shelve_file.db key=key_to_retrieve') }} + ansible.builtin.debug: msg="{{ lookup('shelvefile', 'file=path_to_some_shelve_file.db key=key_to_retrieve') }} """ RETURN = """ diff --git a/plugins/lookup/tss.py b/plugins/lookup/tss.py index 0691155c6a..e193a9218d 100644 --- a/plugins/lookup/tss.py +++ b/plugins/lookup/tss.py @@ -73,7 +73,7 @@ EXAMPLES = r""" vars: secret: "{{ lookup('community.general.tss', 1) }}" tasks: - - debug: msg="the password is {{ (secret['items'] | items2dict(key_name='slug', value_name='itemValue'))['password'] }}" + - ansible.builtin.debug: msg="the password is {{ (secret['items'] | items2dict(key_name='slug', value_name='itemValue'))['password'] }}" """ from ansible.errors import AnsibleError, AnsibleOptionsError diff --git a/plugins/modules/cloud/centurylink/clc_aa_policy.py b/plugins/modules/cloud/centurylink/clc_aa_policy.py index 1f3797f723..57ebea18df 100644 --- a/plugins/modules/cloud/centurylink/clc_aa_policy.py +++ b/plugins/modules/cloud/centurylink/clc_aa_policy.py @@ -64,8 +64,8 @@ EXAMPLES = ''' state: present register: policy - - name: debug - debug: + - name: Debug + ansible.builtin.debug: var: policy --- @@ -82,7 +82,7 @@ EXAMPLES = ''' register: policy - name: Debug - debug: + ansible.builtin.debug: var: policy ''' diff --git a/plugins/modules/cloud/centurylink/clc_alert_policy.py b/plugins/modules/cloud/centurylink/clc_alert_policy.py index 189a8590ef..9a86c40869 100644 --- a/plugins/modules/cloud/centurylink/clc_alert_policy.py +++ b/plugins/modules/cloud/centurylink/clc_alert_policy.py @@ -87,7 +87,7 @@ EXAMPLES = ''' register: policy - name: Debug - debug: var=policy + ansible.builtin.debug: var=policy --- - name: Delete Alert Policy Example @@ -103,7 +103,7 @@ EXAMPLES = ''' register: policy - name: Debug - debug: var=policy + ansible.builtin.debug: var=policy ''' RETURN = ''' diff --git a/plugins/modules/cloud/centurylink/clc_group.py b/plugins/modules/cloud/centurylink/clc_group.py index 04d3d329ca..2b027b1679 100644 --- a/plugins/modules/cloud/centurylink/clc_group.py +++ b/plugins/modules/cloud/centurylink/clc_group.py @@ -77,7 +77,7 @@ EXAMPLES = ''' register: clc - name: Debug - debug: + ansible.builtin.debug: var: clc # Delete a Server Group @@ -96,7 +96,7 @@ EXAMPLES = ''' register: clc - name: Debug - debug: + ansible.builtin.debug: var: clc ''' diff --git a/plugins/modules/cloud/centurylink/clc_publicip.py b/plugins/modules/cloud/centurylink/clc_publicip.py index 9e1df79bff..043cc34128 100644 --- a/plugins/modules/cloud/centurylink/clc_publicip.py +++ b/plugins/modules/cloud/centurylink/clc_publicip.py @@ -73,7 +73,7 @@ EXAMPLES = ''' register: clc - name: Debug - debug: + ansible.builtin.debug: var: clc - name: Delete Public IP from Server @@ -90,7 +90,7 @@ EXAMPLES = ''' register: clc - name: Debug - debug: + ansible.builtin.debug: var: clc ''' diff --git a/plugins/modules/cloud/docker/docker_compose.py b/plugins/modules/cloud/docker/docker_compose.py index 711ca895d8..f6451da611 100644 --- a/plugins/modules/cloud/docker/docker_compose.py +++ b/plugins/modules/cloud/docker/docker_compose.py @@ -177,7 +177,7 @@ EXAMPLES = ''' project_src: flask register: output - - debug: + - ansible.builtin.debug: var: output - name: Run `docker-compose up` again @@ -186,7 +186,7 @@ EXAMPLES = ''' build: no register: output - - debug: + - ansible.builtin.debug: var: output - assert: @@ -199,7 +199,7 @@ EXAMPLES = ''' stopped: yes register: output - - debug: + - ansible.builtin.debug: var: output - assert: @@ -214,7 +214,7 @@ EXAMPLES = ''' restarted: yes register: output - - debug: + - ansible.builtin.debug: var: output - assert: @@ -232,7 +232,7 @@ EXAMPLES = ''' web: 2 register: output - - debug: + - ansible.builtin.debug: var: output - name: Run with inline v2 compose @@ -261,7 +261,7 @@ EXAMPLES = ''' - db register: output - - debug: + - ansible.builtin.debug: var: output - assert: @@ -293,7 +293,7 @@ EXAMPLES = ''' - db register: output - - debug: + - ansible.builtin.debug: var: output - assert: diff --git a/plugins/modules/cloud/docker/docker_container_info.py b/plugins/modules/cloud/docker/docker_container_info.py index 52eb74e6de..80025067b3 100644 --- a/plugins/modules/cloud/docker/docker_container_info.py +++ b/plugins/modules/cloud/docker/docker_container_info.py @@ -46,11 +46,11 @@ EXAMPLES = ''' register: result - name: Does container exist? - debug: + ansible.builtin.debug: msg: "The container {{ 'exists' if result.exists else 'does not exist' }}" - name: Print information about container - debug: + ansible.builtin.debug: var: result.container when: result.exists ''' diff --git a/plugins/modules/cloud/docker/docker_host_info.py b/plugins/modules/cloud/docker/docker_host_info.py index 344e97b99b..674f8ad04b 100644 --- a/plugins/modules/cloud/docker/docker_host_info.py +++ b/plugins/modules/cloud/docker/docker_host_info.py @@ -126,7 +126,7 @@ EXAMPLES = ''' disk_usage: yes register: result -- debug: +- ansible.builtin.debug: var: result.host_info ''' diff --git a/plugins/modules/cloud/docker/docker_network_info.py b/plugins/modules/cloud/docker/docker_network_info.py index df94eba097..feeff6a42e 100644 --- a/plugins/modules/cloud/docker/docker_network_info.py +++ b/plugins/modules/cloud/docker/docker_network_info.py @@ -46,11 +46,11 @@ EXAMPLES = ''' register: result - name: Does network exist? - debug: + ansible.builtin.debug: msg: "The network {{ 'exists' if result.exists else 'does not exist' }}" - name: Print information about network - debug: + ansible.builtin.debug: var: result.network when: result.exists ''' diff --git a/plugins/modules/cloud/docker/docker_swarm_info.py b/plugins/modules/cloud/docker/docker_swarm_info.py index a35c8d1a8c..f6d5fad140 100644 --- a/plugins/modules/cloud/docker/docker_swarm_info.py +++ b/plugins/modules/cloud/docker/docker_swarm_info.py @@ -94,7 +94,7 @@ EXAMPLES = ''' register: result - name: Inform about basic flags - debug: + ansible.builtin.debug: msg: | Was able to talk to docker daemon: {{ result.can_talk_to_docker }} Docker in Swarm mode: {{ result.docker_swarm_active }} @@ -120,7 +120,7 @@ EXAMPLES = ''' name: mynode register: result -- debug: +- ansible.builtin.debug: var: result.swarm_facts - name: Get the swarm unlock key @@ -128,7 +128,7 @@ EXAMPLES = ''' unlock_key: yes register: result -- debug: +- ansible.builtin.debug: var: result.swarm_unlock_key ''' diff --git a/plugins/modules/cloud/docker/docker_volume_info.py b/plugins/modules/cloud/docker/docker_volume_info.py index b792c912b3..c00c24254e 100644 --- a/plugins/modules/cloud/docker/docker_volume_info.py +++ b/plugins/modules/cloud/docker/docker_volume_info.py @@ -42,11 +42,11 @@ EXAMPLES = ''' register: result - name: Does volume exist? - debug: + ansible.builtin.debug: msg: "The volume {{ 'exists' if result.exists else 'does not exist' }}" - name: Print information about volume - debug: + ansible.builtin.debug: var: result.volume when: result.exists ''' diff --git a/plugins/modules/cloud/google/gce.py b/plugins/modules/cloud/google/gce.py index 076440624d..777938869b 100644 --- a/plugins/modules/cloud/google/gce.py +++ b/plugins/modules/cloud/google/gce.py @@ -236,7 +236,7 @@ EXAMPLES = ''' register: gce - name: Save host data - add_host: + ansible.builtin.add_host: hostname: "{{ item.public_ip }}" groupname: gce_instances_ips with_items: "{{ gce.instance_data }}" diff --git a/plugins/modules/cloud/google/gce_mig.py b/plugins/modules/cloud/google/gce_mig.py index 728b62af2b..ae04727c1f 100644 --- a/plugins/modules/cloud/google/gce_mig.py +++ b/plugins/modules/cloud/google/gce_mig.py @@ -93,7 +93,7 @@ EXAMPLES = ''' port: 82 - name: Pause for 30 seconds - pause: + ansible.builtin.pause: seconds: 30 - name: Recreate MIG Instances with Instance Template change. @@ -105,7 +105,7 @@ EXAMPLES = ''' recreate_instances: yes - name: Pause for 30 seconds - pause: + ansible.builtin.pause: seconds: 30 - name: Resize MIG @@ -136,7 +136,7 @@ EXAMPLES = ''' target: 0.4 - name: Pause for 30 seconds - pause: + ansible.builtin.pause: seconds: 30 - name: Delete MIG diff --git a/plugins/modules/cloud/lxc/lxc_container.py b/plugins/modules/cloud/lxc/lxc_container.py index 743b6c4813..9aac710d7d 100644 --- a/plugins/modules/cloud/lxc/lxc_container.py +++ b/plugins/modules/cloud/lxc/lxc_container.py @@ -238,7 +238,7 @@ EXAMPLES = """ register: lvm_container_info - name: Debug info on container "test-container-lvm" - debug: + ansible.builtin.debug: var: lvm_container_info - name: Run a command in a container and ensure its in a "stopped" state. @@ -305,7 +305,7 @@ EXAMPLES = """ register: clone_container_info - name: Debug info on container "test-container" - debug: + ansible.builtin.debug: var: clone_container_info - name: Clone a container using snapshot diff --git a/plugins/modules/cloud/lxd/lxd_container.py b/plugins/modules/cloud/lxd/lxd_container.py index e1b4da2733..e9e788bec6 100644 --- a/plugins/modules/cloud/lxd/lxd_container.py +++ b/plugins/modules/cloud/lxd/lxd_container.py @@ -164,14 +164,14 @@ EXAMPLES = ''' - name: Check python is installed in container delegate_to: mycontainer - raw: dpkg -s python + ansible.builtin.raw: dpkg -s python register: python_install_check failed_when: python_install_check.rc not in [0, 1] changed_when: false - name: Install python in container delegate_to: mycontainer - raw: apt-get install -y python + ansible.builtin.raw: apt-get install -y python when: python_install_check.rc == 1 # An example for creating an Ubuntu 14.04 container using an image fingerprint. @@ -239,7 +239,7 @@ EXAMPLES = ''' - mycontainer tasks: - name: Copy /etc/hosts in the created container to localhost with name "mycontainer-hosts" - fetch: + ansible.builtin.fetch: src: /etc/hosts dest: /tmp/mycontainer-hosts flat: true diff --git a/plugins/modules/cloud/misc/cloud_init_data_facts.py b/plugins/modules/cloud/misc/cloud_init_data_facts.py index c8127e5548..ad8eea86c2 100644 --- a/plugins/modules/cloud/misc/cloud_init_data_facts.py +++ b/plugins/modules/cloud/misc/cloud_init_data_facts.py @@ -29,7 +29,7 @@ EXAMPLES = ''' community.general.cloud_init_data_facts: register: result -- debug: +- ansible.builtin.debug: var: result - name: Wait for cloud init to finish diff --git a/plugins/modules/cloud/misc/xenserver_facts.py b/plugins/modules/cloud/misc/xenserver_facts.py index 6687eef937..25923cb288 100644 --- a/plugins/modules/cloud/misc/xenserver_facts.py +++ b/plugins/modules/cloud/misc/xenserver_facts.py @@ -25,7 +25,7 @@ EXAMPLES = ''' community.general.xenserver_facts: - name: Print running VMs - debug: + ansible.builtin.debug: msg: "{{ item }}" with_items: "{{ xs_vms.keys() }}" when: xs_vms[item]['power_state'] == "Running" diff --git a/plugins/modules/cloud/online/online_server_info.py b/plugins/modules/cloud/online/online_server_info.py index 0bd8fffbce..f0e73aea16 100644 --- a/plugins/modules/cloud/online/online_server_info.py +++ b/plugins/modules/cloud/online/online_server_info.py @@ -27,7 +27,7 @@ EXAMPLES = r''' api_token: '0d1627e8-bbf0-44c5-a46f-5c4d3aef033f' register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.online_server_info }}" ''' diff --git a/plugins/modules/cloud/online/online_user_info.py b/plugins/modules/cloud/online/online_user_info.py index 9455287542..093a2c687f 100644 --- a/plugins/modules/cloud/online/online_user_info.py +++ b/plugins/modules/cloud/online/online_user_info.py @@ -24,7 +24,7 @@ EXAMPLES = r''' community.general.online_user_info: register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.online_user_info }}" ''' diff --git a/plugins/modules/cloud/opennebula/one_image.py b/plugins/modules/cloud/opennebula/one_image.py index cb96476ba6..f262f3a5e5 100644 --- a/plugins/modules/cloud/opennebula/one_image.py +++ b/plugins/modules/cloud/opennebula/one_image.py @@ -80,7 +80,7 @@ EXAMPLES = ''' register: result - name: Print the IMAGE properties - debug: + ansible.builtin.debug: msg: result - name: Rename existing IMAGE diff --git a/plugins/modules/cloud/opennebula/one_image_info.py b/plugins/modules/cloud/opennebula/one_image_info.py index 3243f49141..f349cfb059 100644 --- a/plugins/modules/cloud/opennebula/one_image_info.py +++ b/plugins/modules/cloud/opennebula/one_image_info.py @@ -70,7 +70,7 @@ EXAMPLES = ''' register: result - name: Print all images facts - debug: + ansible.builtin.debug: msg: result - name: Gather facts about an image using ID diff --git a/plugins/modules/cloud/opennebula/one_service.py b/plugins/modules/cloud/opennebula/one_service.py index 4f0f2b4c99..b39ff2de6a 100644 --- a/plugins/modules/cloud/opennebula/one_service.py +++ b/plugins/modules/cloud/opennebula/one_service.py @@ -110,7 +110,7 @@ EXAMPLES = ''' register: result - name: Print service properties - debug: + ansible.builtin.debug: msg: result - name: Instantiate a new service with specified service_name, service group and mode diff --git a/plugins/modules/cloud/opennebula/one_vm.py b/plugins/modules/cloud/opennebula/one_vm.py index 5facbac60a..3ee38aa10a 100644 --- a/plugins/modules/cloud/opennebula/one_vm.py +++ b/plugins/modules/cloud/opennebula/one_vm.py @@ -194,7 +194,7 @@ EXAMPLES = ''' register: result - name: Print VM properties - debug: + ansible.builtin.debug: msg: result - name: Deploy a new VM on hold diff --git a/plugins/modules/cloud/ovirt/ovirt_affinity_label_facts.py b/plugins/modules/cloud/ovirt/ovirt_affinity_label_facts.py index 2d50323ac9..e560e13e30 100644 --- a/plugins/modules/cloud/ovirt/ovirt_affinity_label_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_affinity_label_facts.py @@ -62,7 +62,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_affinity_labels }}" - name: > @@ -73,7 +73,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_affinity_labels }}" - name: > @@ -84,7 +84,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_affinity_labels }}" - name: > @@ -96,7 +96,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_affinity_labels }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_api_facts.py b/plugins/modules/cloud/ovirt/ovirt_api_facts.py index f09f2804af..4085a7022b 100644 --- a/plugins/modules/cloud/ovirt/ovirt_api_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_api_facts.py @@ -36,7 +36,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_api }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_cluster_facts.py b/plugins/modules/cloud/ovirt/ovirt_cluster_facts.py index f1206780c9..e4916a2684 100644 --- a/plugins/modules/cloud/ovirt/ovirt_cluster_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_cluster_facts.py @@ -59,7 +59,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_clusters }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_datacenter_facts.py b/plugins/modules/cloud/ovirt/ovirt_datacenter_facts.py index 5b01d50a42..0de7272939 100644 --- a/plugins/modules/cloud/ovirt/ovirt_datacenter_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_datacenter_facts.py @@ -42,7 +42,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_datacenters }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_disk_facts.py b/plugins/modules/cloud/ovirt/ovirt_disk_facts.py index 04532a17e5..6e0c9f699d 100644 --- a/plugins/modules/cloud/ovirt/ovirt_disk_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_disk_facts.py @@ -58,7 +58,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_disks }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_event_facts.py b/plugins/modules/cloud/ovirt/ovirt_event_facts.py index e846a2262f..50a2065498 100644 --- a/plugins/modules/cloud/ovirt/ovirt_event_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_event_facts.py @@ -88,7 +88,7 @@ EXAMPLES = ''' ovirt_event_info: search: "severity=alert" register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.ovirt_events }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_external_provider_facts.py b/plugins/modules/cloud/ovirt/ovirt_external_provider_facts.py index b67325444b..644a6b8fab 100644 --- a/plugins/modules/cloud/ovirt/ovirt_external_provider_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_external_provider_facts.py @@ -62,7 +62,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_external_providers }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_group_facts.py b/plugins/modules/cloud/ovirt/ovirt_group_facts.py index 8f06b7bd64..40b037f4ee 100644 --- a/plugins/modules/cloud/ovirt/ovirt_group_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_group_facts.py @@ -57,7 +57,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_groups }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_host_facts.py b/plugins/modules/cloud/ovirt/ovirt_host_facts.py index b57bb995a3..ea585e9051 100644 --- a/plugins/modules/cloud/ovirt/ovirt_host_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_host_facts.py @@ -54,7 +54,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_hosts }}" - name: Gather information about all hosts with cluster version 4.2 @@ -64,7 +64,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_hosts }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_host_storage_facts.py b/plugins/modules/cloud/ovirt/ovirt_host_storage_facts.py index a14dceac22..62af3e4ba1 100644 --- a/plugins/modules/cloud/ovirt/ovirt_host_storage_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_host_storage_facts.py @@ -73,7 +73,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_host_storages }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_network_facts.py b/plugins/modules/cloud/ovirt/ovirt_network_facts.py index 9ca95e3c7e..781dd85805 100644 --- a/plugins/modules/cloud/ovirt/ovirt_network_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_network_facts.py @@ -58,7 +58,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_networks }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_nic_facts.py b/plugins/modules/cloud/ovirt/ovirt_nic_facts.py index d289ab533c..2cc1194fbc 100644 --- a/plugins/modules/cloud/ovirt/ovirt_nic_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_nic_facts.py @@ -61,7 +61,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_nics }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_permission_facts.py b/plugins/modules/cloud/ovirt/ovirt_permission_facts.py index ea3a7017b6..52ba3624f1 100644 --- a/plugins/modules/cloud/ovirt/ovirt_permission_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_permission_facts.py @@ -69,7 +69,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_permissions }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_quota_facts.py b/plugins/modules/cloud/ovirt/ovirt_quota_facts.py index 97aca41a11..b2424305ae 100644 --- a/plugins/modules/cloud/ovirt/ovirt_quota_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_quota_facts.py @@ -61,7 +61,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_quotas }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_scheduling_policy_facts.py b/plugins/modules/cloud/ovirt/ovirt_scheduling_policy_facts.py index 546b8e62b7..237aee8e23 100644 --- a/plugins/modules/cloud/ovirt/ovirt_scheduling_policy_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_scheduling_policy_facts.py @@ -60,7 +60,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_scheduling_policies }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_snapshot_facts.py b/plugins/modules/cloud/ovirt/ovirt_snapshot_facts.py index 82f68a9379..737468835e 100644 --- a/plugins/modules/cloud/ovirt/ovirt_snapshot_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_snapshot_facts.py @@ -49,7 +49,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_snapshots }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_storage_domain_facts.py b/plugins/modules/cloud/ovirt/ovirt_storage_domain_facts.py index 9fca203dc4..b9d814c121 100644 --- a/plugins/modules/cloud/ovirt/ovirt_storage_domain_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_storage_domain_facts.py @@ -60,7 +60,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_storage_domains }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_storage_template_facts.py b/plugins/modules/cloud/ovirt/ovirt_storage_template_facts.py index d0668d4b94..1c58327801 100644 --- a/plugins/modules/cloud/ovirt/ovirt_storage_template_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_storage_template_facts.py @@ -65,7 +65,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_storage_templates }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_storage_vm_facts.py b/plugins/modules/cloud/ovirt/ovirt_storage_vm_facts.py index 539a64bba4..d024794849 100644 --- a/plugins/modules/cloud/ovirt/ovirt_storage_vm_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_storage_vm_facts.py @@ -65,7 +65,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_storage_vms }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_tag_facts.py b/plugins/modules/cloud/ovirt/ovirt_tag_facts.py index de08f6c35a..c6e9b7441a 100644 --- a/plugins/modules/cloud/ovirt/ovirt_tag_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_tag_facts.py @@ -62,7 +62,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_tags }}" - name: Gather information about all tags, which are assigned to VM postgres @@ -71,7 +71,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_tags }}" - name: Gather information about all tags, which are assigned to host west @@ -80,7 +80,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_tags }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_template_facts.py b/plugins/modules/cloud/ovirt/ovirt_template_facts.py index 8dc9187185..7595c64afa 100644 --- a/plugins/modules/cloud/ovirt/ovirt_template_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_template_facts.py @@ -58,7 +58,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_templates }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_user_facts.py b/plugins/modules/cloud/ovirt/ovirt_user_facts.py index dd2a9f5b0d..ce7ab8d661 100644 --- a/plugins/modules/cloud/ovirt/ovirt_user_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_user_facts.py @@ -57,7 +57,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_users }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_vm_facts.py b/plugins/modules/cloud/ovirt/ovirt_vm_facts.py index f162633d38..96f1483a62 100644 --- a/plugins/modules/cloud/ovirt/ovirt_vm_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_vm_facts.py @@ -77,7 +77,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_vms }}" - name: Gather info about next run configuration of virtual machine named myvm @@ -87,7 +87,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_vms[0] }}" ''' diff --git a/plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py b/plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py index 3dd8901f04..24842be56c 100644 --- a/plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py +++ b/plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py @@ -57,7 +57,7 @@ EXAMPLES = ''' register: result - name: Print gathered information - debug: + ansible.builtin.debug: msg: "{{ result.ovirt_vm_pools }}" ''' diff --git a/plugins/modules/cloud/scaleway/scaleway_image_info.py b/plugins/modules/cloud/scaleway/scaleway_image_info.py index a2ba2a74f8..13f661f02f 100644 --- a/plugins/modules/cloud/scaleway/scaleway_image_info.py +++ b/plugins/modules/cloud/scaleway/scaleway_image_info.py @@ -39,7 +39,7 @@ EXAMPLES = r''' region: par1 register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.scaleway_image_info }}" ''' diff --git a/plugins/modules/cloud/scaleway/scaleway_ip_info.py b/plugins/modules/cloud/scaleway/scaleway_ip_info.py index 36f15ef001..d9d7bcacb3 100644 --- a/plugins/modules/cloud/scaleway/scaleway_ip_info.py +++ b/plugins/modules/cloud/scaleway/scaleway_ip_info.py @@ -37,7 +37,7 @@ EXAMPLES = r''' region: par1 register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.scaleway_ip_info }}" ''' diff --git a/plugins/modules/cloud/scaleway/scaleway_organization_info.py b/plugins/modules/cloud/scaleway/scaleway_organization_info.py index 28d60b5c2c..f530dcb81a 100644 --- a/plugins/modules/cloud/scaleway/scaleway_organization_info.py +++ b/plugins/modules/cloud/scaleway/scaleway_organization_info.py @@ -32,7 +32,7 @@ EXAMPLES = r''' community.general.scaleway_organization_info: register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.scaleway_organization_info }}" ''' diff --git a/plugins/modules/cloud/scaleway/scaleway_security_group_info.py b/plugins/modules/cloud/scaleway/scaleway_security_group_info.py index 5bca181ea8..0cf304f61a 100644 --- a/plugins/modules/cloud/scaleway/scaleway_security_group_info.py +++ b/plugins/modules/cloud/scaleway/scaleway_security_group_info.py @@ -37,7 +37,7 @@ EXAMPLES = r''' region: par1 register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.scaleway_security_group_info }}" ''' diff --git a/plugins/modules/cloud/scaleway/scaleway_server_info.py b/plugins/modules/cloud/scaleway/scaleway_server_info.py index c7fd37f977..4f1c3042f4 100644 --- a/plugins/modules/cloud/scaleway/scaleway_server_info.py +++ b/plugins/modules/cloud/scaleway/scaleway_server_info.py @@ -37,7 +37,7 @@ EXAMPLES = r''' region: par1 register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.scaleway_server_info }}" ''' diff --git a/plugins/modules/cloud/scaleway/scaleway_snapshot_info.py b/plugins/modules/cloud/scaleway/scaleway_snapshot_info.py index a034329e56..1b8e9a541e 100644 --- a/plugins/modules/cloud/scaleway/scaleway_snapshot_info.py +++ b/plugins/modules/cloud/scaleway/scaleway_snapshot_info.py @@ -37,7 +37,7 @@ EXAMPLES = r''' region: par1 register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.scaleway_snapshot_info }}" ''' diff --git a/plugins/modules/cloud/scaleway/scaleway_volume_info.py b/plugins/modules/cloud/scaleway/scaleway_volume_info.py index 1abd0b548a..32c0abf359 100644 --- a/plugins/modules/cloud/scaleway/scaleway_volume_info.py +++ b/plugins/modules/cloud/scaleway/scaleway_volume_info.py @@ -37,7 +37,7 @@ EXAMPLES = r''' region: par1 register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.scaleway_volume_info }}" ''' diff --git a/plugins/modules/cloud/smartos/smartos_image_info.py b/plugins/modules/cloud/smartos/smartos_image_info.py index eec3ac0114..17761af8a5 100644 --- a/plugins/modules/cloud/smartos/smartos_image_info.py +++ b/plugins/modules/cloud/smartos/smartos_image_info.py @@ -41,7 +41,7 @@ EXAMPLES = ''' register: result - name: Print information - debug: + ansible.builtin.debug: msg: "{{ result.smartos_images[item]['name'] }}-{{ result.smartos_images[item]['version'] }} has {{ result.smartos_images[item]['clones'] }} VM(s)" with_items: "{{ result.smartos_images.keys() | list }}" @@ -50,7 +50,7 @@ EXAMPLES = ''' # in ansible_facts['smartos_images'] and can be used as follows. # Note that this is deprecated and will stop working in community.general 3.0.0. - name: Print information - debug: + ansible.builtin.debug: msg: "{{ smartos_images[item]['name'] }}-{{ smartos_images[item]['version'] }} has {{ smartos_images[item]['clones'] }} VM(s)" with_items: "{{ smartos_images.keys() | list }}" diff --git a/plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py b/plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py index 9d8b6a5b3e..bffecd8903 100644 --- a/plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py +++ b/plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py @@ -494,7 +494,7 @@ EXAMPLES = ''' - image_id - target register: result - - debug: var=result + - ansible.builtin.debug: var=result # In this example, we create an elastigroup and wait 600 seconds to retrieve the instances, and use their private ips @@ -538,9 +538,9 @@ EXAMPLES = ''' register: result - name: Store private ips to file - shell: echo {{ item.private_ip }}\\n >> list-of-private-ips + ansible.builtin.shell: echo {{ item.private_ip }}\\n >> list-of-private-ips with_items: "{{ result.instances }}" - - debug: var=result + - ansible.builtin.debug: var=result # In this example, we create an elastigroup with multiple block device mappings, tags, and also an account id # In organizations with more than one account, it is required to specify an account_id @@ -589,9 +589,9 @@ EXAMPLES = ''' register: result - name: Store private ips to file - shell: echo {{ item.private_ip }}\\n >> list-of-private-ips + ansible.builtin.shell: echo {{ item.private_ip }}\\n >> list-of-private-ips with_items: "{{ result.instances }}" - - debug: var=result + - ansible.builtin.debug: var=result # In this example we have set up block device mapping with ephemeral devices @@ -630,7 +630,7 @@ EXAMPLES = ''' - image_id - target register: result - - debug: var=result + - ansible.builtin.debug: var=result # In this example we create a basic group configuration with a network interface defined. # Each network interface must have a device index @@ -668,7 +668,7 @@ EXAMPLES = ''' - image_id - target register: result - - debug: var=result + - ansible.builtin.debug: var=result # In this example we create a basic group configuration with a target tracking scaling policy defined @@ -713,7 +713,7 @@ EXAMPLES = ''' do_not_update: - image_id register: result - - debug: var=result + - ansible.builtin.debug: var=result ''' RETURN = ''' diff --git a/plugins/modules/database/aerospike/aerospike_migrations.py b/plugins/modules/database/aerospike/aerospike_migrations.py index 9e1a6a0f0c..6f9d9c017a 100644 --- a/plugins/modules/database/aerospike/aerospike_migrations.py +++ b/plugins/modules/database/aerospike/aerospike_migrations.py @@ -122,14 +122,14 @@ EXAMPLES = ''' serial: 1 tasks: - name: Install dependencies - apt: + ansible.builtin.apt: name: - python - python-pip - python-setuptools state: latest - name: Setup aerospike - pip: + ansible.builtin.pip: name: aerospike # check for migrations every (sleep_between_checks) # If at least (consecutive_good_checks) checks come back OK in a row, then return OK. @@ -152,10 +152,10 @@ EXAMPLES = ''' delay: 60 retries: 120 - name: Another thing - shell: | + ansible.builtin.shell: | echo foo - name: Reboot - reboot: + ansible.builtin.reboot: ''' RETURN = ''' diff --git a/plugins/modules/database/influxdb/influxdb_query.py b/plugins/modules/database/influxdb/influxdb_query.py index e05d5a3d55..d9cf500727 100644 --- a/plugins/modules/database/influxdb/influxdb_query.py +++ b/plugins/modules/database/influxdb/influxdb_query.py @@ -49,7 +49,7 @@ EXAMPLES = r''' register: connection - name: Print results from the query - debug: + ansible.builtin.debug: var: connection.query_results ''' diff --git a/plugins/modules/database/misc/redis_info.py b/plugins/modules/database/misc/redis_info.py index f37330cb65..b615addbd2 100644 --- a/plugins/modules/database/misc/redis_info.py +++ b/plugins/modules/database/misc/redis_info.py @@ -46,7 +46,7 @@ EXAMPLES = r''' register: result - name: Print server information - debug: + ansible.builtin.debug: var: result.info ''' diff --git a/plugins/modules/database/mssql/mssql_db.py b/plugins/modules/database/mssql/mssql_db.py index 28b13a7052..02299544ed 100644 --- a/plugins/modules/database/mssql/mssql_db.py +++ b/plugins/modules/database/mssql/mssql_db.py @@ -66,7 +66,7 @@ EXAMPLES = ''' # Copy database dump file to remote host and restore it to database 'my_db' - name: Copy database dump file to remote host - copy: + ansible.builtin.copy: src: dump.sql dest: /tmp diff --git a/plugins/modules/database/postgresql/postgresql_set.py b/plugins/modules/database/postgresql/postgresql_set.py index 0a0a062895..346993ea69 100644 --- a/plugins/modules/database/postgresql/postgresql_set.py +++ b/plugins/modules/database/postgresql/postgresql_set.py @@ -102,7 +102,7 @@ EXAMPLES = r''' value: 32mb register: set -- debug: +- ansible.builtin.debug: msg: "{{ set.name }} {{ set.prev_val_pretty }} >> {{ set.value_pretty }} restart_req: {{ set.restart_required }}" when: set.changed # Ensure that the restart of PostgreSQL server must be required for some parameters. diff --git a/plugins/modules/database/vertica/vertica_info.py b/plugins/modules/database/vertica/vertica_info.py index 5dd245bc91..a5741719b7 100644 --- a/plugins/modules/database/vertica/vertica_info.py +++ b/plugins/modules/database/vertica/vertica_info.py @@ -54,7 +54,7 @@ EXAMPLES = """ register: result - name: Print schemas - debug: + ansible.builtin.debug: msg: "{{ result.vertica_schemas }}" """ import traceback diff --git a/plugins/modules/files/read_csv.py b/plugins/modules/files/read_csv.py index c5eaee8b69..7100d3782d 100644 --- a/plugins/modules/files/read_csv.py +++ b/plugins/modules/files/read_csv.py @@ -82,7 +82,7 @@ EXAMPLES = r''' register: users delegate_to: localhost -- debug: +- ansible.builtin.debug: msg: 'User {{ users.dict.dag.name }} has UID {{ users.dict.dag.uid }} and GID {{ users.dict.dag.gid }}' # Read a CSV file and access the first item @@ -92,7 +92,7 @@ EXAMPLES = r''' register: users delegate_to: localhost -- debug: +- ansible.builtin.debug: msg: 'User {{ users.list.1.name }} has UID {{ users.list.1.uid }} and GID {{ users.list.1.gid }}' # Example CSV file without header and semi-colon delimiter diff --git a/plugins/modules/files/xml.py b/plugins/modules/files/xml.py index 450d4cd9cb..7bf99e29ba 100644 --- a/plugins/modules/files/xml.py +++ b/plugins/modules/files/xml.py @@ -195,7 +195,7 @@ EXAMPLES = r''' count: yes register: hits -- debug: +- ansible.builtin.debug: var: hits.count # Example where parent XML nodes are created automatically @@ -251,7 +251,7 @@ EXAMPLES = r''' register: xmlresp - name: Show an attribute value - debug: + ansible.builtin.debug: var: xmlresp.matches[0].validxhtml.validatedon - name: Remove all children from the 'website' element (option 1) diff --git a/plugins/modules/identity/onepassword_info.py b/plugins/modules/identity/onepassword_info.py index 96c07dd044..6a5c3d9290 100644 --- a/plugins/modules/identity/onepassword_info.py +++ b/plugins/modules/identity/onepassword_info.py @@ -135,7 +135,7 @@ EXAMPLES = ''' no_log: true # Don't want to log the secrets to the console! - name: Debug a password (for example) - debug: + ansible.builtin.debug: msg: "{{ my_1password_item['onepassword']['My 1Password item'] }}" ''' diff --git a/plugins/modules/monitoring/sensu/sensu_client.py b/plugins/modules/monitoring/sensu/sensu_client.py index 196331f494..e5b9af1dd4 100644 --- a/plugins/modules/monitoring/sensu/sensu_client.py +++ b/plugins/modules/monitoring/sensu/sensu_client.py @@ -114,7 +114,7 @@ EXAMPLES = ''' - Restart sensu-client - name: Secure Sensu client configuration file - file: + ansible.builtin.file: path: "{{ client['file'] }}" owner: "sensu" group: "sensu" diff --git a/plugins/modules/monitoring/sensu/sensu_handler.py b/plugins/modules/monitoring/sensu/sensu_handler.py index d1df3909fb..0818ab7813 100644 --- a/plugins/modules/monitoring/sensu/sensu_handler.py +++ b/plugins/modules/monitoring/sensu/sensu_handler.py @@ -119,7 +119,7 @@ EXAMPLES = ''' - Restart sensu-server - name: Secure Sensu handler configuration file - file: + ansible.builtin.file: path: "{{ handler['file'] }}" owner: "sensu" group: "sensu" diff --git a/plugins/modules/net_tools/hetzner_failover_ip_info.py b/plugins/modules/net_tools/hetzner_failover_ip_info.py index 7a37301cf3..4d6f9f3762 100644 --- a/plugins/modules/net_tools/hetzner_failover_ip_info.py +++ b/plugins/modules/net_tools/hetzner_failover_ip_info.py @@ -42,7 +42,7 @@ EXAMPLES = r''' register: result - name: Print value of failover IP 1.2.3.4 in case it is routed - debug: + ansible.builtin.debug: msg: "1.2.3.4 routes to {{ result.value }}" when: result.state == 'routed' ''' diff --git a/plugins/modules/net_tools/hetzner_firewall.py b/plugins/modules/net_tools/hetzner_firewall.py index fdc5e8781c..458de6f408 100644 --- a/plugins/modules/net_tools/hetzner_firewall.py +++ b/plugins/modules/net_tools/hetzner_firewall.py @@ -164,7 +164,7 @@ EXAMPLES = r''' action: discard register: result -- debug: +- ansible.builtin.debug: msg: "{{ result }}" ''' diff --git a/plugins/modules/net_tools/hetzner_firewall_info.py b/plugins/modules/net_tools/hetzner_firewall_info.py index 4c20aaebe1..fde06a5a2e 100644 --- a/plugins/modules/net_tools/hetzner_firewall_info.py +++ b/plugins/modules/net_tools/hetzner_firewall_info.py @@ -64,7 +64,7 @@ EXAMPLES = r''' server_ip: 1.2.3.4 register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.firewall }}" ''' diff --git a/plugins/modules/net_tools/lldp.py b/plugins/modules/net_tools/lldp.py index 217c5eac5e..41853eb864 100644 --- a/plugins/modules/net_tools/lldp.py +++ b/plugins/modules/net_tools/lldp.py @@ -26,7 +26,7 @@ EXAMPLES = ''' community.general.lldp: - name: Print each switch/port - debug: + ansible.builtin.debug: msg: "{{ lldp[item]['chassis']['name'] }} / {{ lldp[item]['port']['ifname'] }}" with_items: "{{ lldp.keys() }}" diff --git a/plugins/modules/net_tools/nmcli.py b/plugins/modules/net_tools/nmcli.py index faa00b0bde..1cb4a8b5e4 100644 --- a/plugins/modules/net_tools/nmcli.py +++ b/plugins/modules/net_tools/nmcli.py @@ -355,7 +355,7 @@ EXAMPLES = r''' tasks: - name: Install needed network manager libs - package: + ansible.builtin.package: name: - NetworkManager-libnm - nm-connection-editor diff --git a/plugins/modules/remote_management/hpilo/hpilo_info.py b/plugins/modules/remote_management/hpilo/hpilo_info.py index edc23d9258..af43ca195e 100644 --- a/plugins/modules/remote_management/hpilo/hpilo_info.py +++ b/plugins/modules/remote_management/hpilo/hpilo_info.py @@ -55,7 +55,7 @@ EXAMPLES = r''' delegate_to: localhost register: results -- fail: +- ansible.builtin.fail: msg: 'CMDB serial ({{ cmdb_serialno }}) does not match hardware serial ({{ results.hw_system_serial }}) !' when: cmdb_serialno != results.hw_system_serial ''' diff --git a/plugins/modules/remote_management/hpilo/hponcfg.py b/plugins/modules/remote_management/hpilo/hponcfg.py index 006e4b086a..451e4b0613 100644 --- a/plugins/modules/remote_management/hpilo/hponcfg.py +++ b/plugins/modules/remote_management/hpilo/hponcfg.py @@ -42,7 +42,7 @@ notes: EXAMPLES = r''' - name: Example hponcfg configuration XML - copy: + ansible.builtin.copy: content: | diff --git a/plugins/modules/remote_management/oneview/oneview_datacenter_info.py b/plugins/modules/remote_management/oneview/oneview_datacenter_info.py index c87003818d..19aa7a2708 100644 --- a/plugins/modules/remote_management/oneview/oneview_datacenter_info.py +++ b/plugins/modules/remote_management/oneview/oneview_datacenter_info.py @@ -43,7 +43,7 @@ EXAMPLES = ''' api_version: 500 delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.datacenters }}" - name: Gather paginated, filtered and sorted information about Data Centers @@ -58,7 +58,7 @@ EXAMPLES = ''' sort: 'name:descending' filter: 'state=Unmanaged' register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.datacenters }}" - name: Gather information about a Data Center by name @@ -70,7 +70,7 @@ EXAMPLES = ''' name: "My Data Center" delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.datacenters }}" - name: Gather information about the Data Center Visual Content @@ -84,9 +84,9 @@ EXAMPLES = ''' - visualContent delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.datacenters }}" -- debug: +- ansible.builtin.debug: msg: "{{ result.datacenter_visual_content }}" ''' diff --git a/plugins/modules/remote_management/oneview/oneview_enclosure_info.py b/plugins/modules/remote_management/oneview/oneview_enclosure_info.py index aae261fa5c..7963de74fa 100644 --- a/plugins/modules/remote_management/oneview/oneview_enclosure_info.py +++ b/plugins/modules/remote_management/oneview/oneview_enclosure_info.py @@ -46,7 +46,7 @@ EXAMPLES = ''' no_log: true delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.enclosures }}" - name: Gather paginated, filtered and sorted information about Enclosures @@ -63,7 +63,7 @@ EXAMPLES = ''' no_log: true delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.enclosures }}" - name: Gather information about an Enclosure by name @@ -76,7 +76,7 @@ EXAMPLES = ''' no_log: true delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.enclosures }}" - name: Gather information about an Enclosure by name with options @@ -93,13 +93,13 @@ EXAMPLES = ''' no_log: true delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.enclosures }}" -- debug: +- ansible.builtin.debug: msg: "{{ result.enclosure_script }}" -- debug: +- ansible.builtin.debug: msg: "{{ result.enclosure_environmental_configuration }}" -- debug: +- ansible.builtin.debug: msg: "{{ result.enclosure_utilization }}" - name: "Gather information about an Enclosure with temperature data at a resolution of one sample per day, between two @@ -121,9 +121,9 @@ EXAMPLES = ''' no_log: true delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.enclosures }}" -- debug: +- ansible.builtin.debug: msg: "{{ result.enclosure_utilization }}" ''' diff --git a/plugins/modules/remote_management/oneview/oneview_ethernet_network_info.py b/plugins/modules/remote_management/oneview/oneview_ethernet_network_info.py index a74e62657e..b1790932c1 100644 --- a/plugins/modules/remote_management/oneview/oneview_ethernet_network_info.py +++ b/plugins/modules/remote_management/oneview/oneview_ethernet_network_info.py @@ -40,7 +40,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.ethernet_networks }}" - name: Gather paginated and filtered information about Ethernet Networks @@ -54,7 +54,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.ethernet_networks }}" - name: Gather information about an Ethernet Network by name @@ -64,7 +64,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.ethernet_networks }}" - name: Gather information about an Ethernet Network by name with options @@ -77,9 +77,9 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.enet_associated_profiles }}" -- debug: +- ansible.builtin.debug: msg: "{{ result.enet_associated_uplink_groups }}" ''' diff --git a/plugins/modules/remote_management/oneview/oneview_fc_network_info.py b/plugins/modules/remote_management/oneview/oneview_fc_network_info.py index 669cb00e33..2fad241af6 100644 --- a/plugins/modules/remote_management/oneview/oneview_fc_network_info.py +++ b/plugins/modules/remote_management/oneview/oneview_fc_network_info.py @@ -37,7 +37,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.fc_networks }}" - name: Gather paginated, filtered and sorted information about Fibre Channel Networks @@ -50,7 +50,7 @@ EXAMPLES = ''' filter: 'fabricType=FabricAttach' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.fc_networks }}" - name: Gather information about a Fibre Channel Network by name @@ -60,7 +60,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.fc_networks }}" ''' diff --git a/plugins/modules/remote_management/oneview/oneview_fcoe_network_info.py b/plugins/modules/remote_management/oneview/oneview_fcoe_network_info.py index 8fb65355d3..8c1980df93 100644 --- a/plugins/modules/remote_management/oneview/oneview_fcoe_network_info.py +++ b/plugins/modules/remote_management/oneview/oneview_fcoe_network_info.py @@ -36,7 +36,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.fcoe_networks }}" - name: Gather paginated, filtered and sorted information about FCoE Networks @@ -50,7 +50,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.fcoe_networks }}" - name: Gather information about a FCoE Network by name @@ -60,7 +60,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.fcoe_networks }}" ''' diff --git a/plugins/modules/remote_management/oneview/oneview_logical_interconnect_group_info.py b/plugins/modules/remote_management/oneview/oneview_logical_interconnect_group_info.py index 1eef9420ab..16a78309f6 100644 --- a/plugins/modules/remote_management/oneview/oneview_logical_interconnect_group_info.py +++ b/plugins/modules/remote_management/oneview/oneview_logical_interconnect_group_info.py @@ -41,7 +41,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.logical_interconnect_groups }}" - name: Gather paginated, filtered and sorted information about Logical Interconnect Groups @@ -59,7 +59,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.logical_interconnect_groups }}" - name: Gather information about a Logical Interconnect Group by name @@ -73,7 +73,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.logical_interconnect_groups }}" ''' diff --git a/plugins/modules/remote_management/oneview/oneview_network_set_info.py b/plugins/modules/remote_management/oneview/oneview_network_set_info.py index be12c990c4..68c18db924 100644 --- a/plugins/modules/remote_management/oneview/oneview_network_set_info.py +++ b/plugins/modules/remote_management/oneview/oneview_network_set_info.py @@ -47,7 +47,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.network_sets }}" - name: Gather paginated, filtered, and sorted information about Network Sets @@ -65,7 +65,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.network_sets }}" - name: Gather information about all Network Sets, excluding Ethernet networks @@ -80,7 +80,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.network_sets }}" - name: Gather information about a Network Set by name @@ -94,7 +94,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.network_sets }}" - name: Gather information about a Network Set by name, excluding Ethernet networks @@ -110,7 +110,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.network_sets }}" ''' diff --git a/plugins/modules/remote_management/oneview/oneview_san_manager_info.py b/plugins/modules/remote_management/oneview/oneview_san_manager_info.py index 8fd1c4fac0..c4a6b7a86b 100644 --- a/plugins/modules/remote_management/oneview/oneview_san_manager_info.py +++ b/plugins/modules/remote_management/oneview/oneview_san_manager_info.py @@ -43,7 +43,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.san_managers }}" - name: Gather paginated, filtered and sorted information about SAN Managers @@ -57,7 +57,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.san_managers }}" - name: Gather information about a SAN Manager by provider display name @@ -67,7 +67,7 @@ EXAMPLES = ''' delegate_to: localhost register: result -- debug: +- ansible.builtin.debug: msg: "{{ result.san_managers }}" ''' diff --git a/plugins/modules/remote_management/redfish/idrac_redfish_info.py b/plugins/modules/remote_management/redfish/idrac_redfish_info.py index ea1535bd6b..42f27cb1b9 100644 --- a/plugins/modules/remote_management/redfish/idrac_redfish_info.py +++ b/plugins/modules/remote_management/redfish/idrac_redfish_info.py @@ -71,11 +71,11 @@ EXAMPLES = ''' idrac_attributes: "{{ result.redfish_facts.entries | selectattr('Id', 'defined') | selectattr('Id', 'equalto', 'iDRACAttributes') | list | first }}" - name: Display all iDRAC attributes - debug: + ansible.builtin.debug: var: idrac_attributes - name: Display the value of 'Syslog.1.SysLogEnable' iDRAC attribute - debug: + ansible.builtin.debug: var: idrac_attributes['Syslog.1.SysLogEnable'] # Examples to display the value of all or a single LifecycleController attribute @@ -84,11 +84,11 @@ EXAMPLES = ''' lc_attributes: "{{ result.redfish_facts.entries | selectattr('Id', 'defined') | selectattr('Id', 'equalto', 'LCAttributes') | list | first }}" - name: Display LifecycleController attributes - debug: + ansible.builtin.debug: var: lc_attributes - name: Display the value of 'CollectSystemInventoryOnRestart' attribute - debug: + ansible.builtin.debug: var: lc_attributes['LCAttributes.1.CollectSystemInventoryOnRestart'] # Examples to display the value of all or a single System attribute @@ -97,11 +97,11 @@ EXAMPLES = ''' system_attributes: "{{ result.redfish_facts.entries | selectattr('Id', 'defined') | selectattr('Id', 'equalto', 'SystemAttributes') | list | first }}" - name: Display System attributes - debug: + ansible.builtin.debug: var: system_attributes - name: Display the value of 'PSRedPolicy' - debug: + ansible.builtin.debug: var: system_attributes['ServerPwr.1.PSRedPolicy'] ''' diff --git a/plugins/modules/remote_management/redfish/redfish_info.py b/plugins/modules/remote_management/redfish/redfish_info.py index 7b34db7d14..cfdb1aef5b 100644 --- a/plugins/modules/remote_management/redfish/redfish_info.py +++ b/plugins/modules/remote_management/redfish/redfish_info.py @@ -62,7 +62,7 @@ EXAMPLES = ''' username: "{{ username }}" password: "{{ password }}" register: result - - debug: + - ansible.builtin.debug: msg: "{{ result.redfish_facts.cpu.entries | to_nice_json }}" - name: Get CPU model @@ -73,7 +73,7 @@ EXAMPLES = ''' username: "{{ username }}" password: "{{ password }}" register: result - - debug: + - ansible.builtin.debug: msg: "{{ result.redfish_facts.cpu.entries.0.Model }}" - name: Get memory inventory @@ -103,7 +103,7 @@ EXAMPLES = ''' username: "{{ username }}" password: "{{ password }}" register: result - - debug: + - ansible.builtin.debug: msg: "{{ result.redfish_facts.virtual_media.entries | to_nice_json }}" - name: Get Volume Inventory @@ -114,7 +114,7 @@ EXAMPLES = ''' username: "{{ username }}" password: "{{ password }}" register: result - - debug: + - ansible.builtin.debug: msg: "{{ result.redfish_facts.volume.entries | to_nice_json }}" - name: Get Session information @@ -125,7 +125,7 @@ EXAMPLES = ''' username: "{{ username }}" password: "{{ password }}" register: result - - debug: + - ansible.builtin.debug: msg: "{{ result.redfish_facts.session.entries | to_nice_json }}" - name: Get default inventory information @@ -134,7 +134,7 @@ EXAMPLES = ''' username: "{{ username }}" password: "{{ password }}" register: result - - debug: + - ansible.builtin.debug: msg: "{{ result.redfish_facts | to_nice_json }}" - name: Get several inventories diff --git a/plugins/modules/source_control/github/github_issue.py b/plugins/modules/source_control/github/github_issue.py index 8471b4190d..9c4b558bd5 100644 --- a/plugins/modules/source_control/github/github_issue.py +++ b/plugins/modules/source_control/github/github_issue.py @@ -54,7 +54,7 @@ EXAMPLES = ''' register: r - name: Take action depending upon issue status - debug: + ansible.builtin.debug: msg: Do something when issue 23642 is open when: r.issue_status == 'open' ''' diff --git a/plugins/modules/source_control/github/github_key.py b/plugins/modules/source_control/github/github_key.py index e3637231a4..415065f88e 100644 --- a/plugins/modules/source_control/github/github_key.py +++ b/plugins/modules/source_control/github/github_key.py @@ -60,7 +60,7 @@ key: EXAMPLES = ''' - name: Read SSH public key to authorize - shell: cat /home/foo/.ssh/id_rsa.pub + ansible.builtin.shell: cat /home/foo/.ssh/id_rsa.pub register: ssh_pub_key - name: Authorize key with GitHub diff --git a/plugins/modules/storage/glusterfs/gluster_heal_info.py b/plugins/modules/storage/glusterfs/gluster_heal_info.py index 8df0682e72..46306585fc 100644 --- a/plugins/modules/storage/glusterfs/gluster_heal_info.py +++ b/plugins/modules/storage/glusterfs/gluster_heal_info.py @@ -39,7 +39,7 @@ EXAMPLES = ''' name: test_volume status_filter: self-heal register: self_heal_status -- debug: +- ansible.builtin.debug: var: self_heal_status - name: Gather rebalance facts about all gluster hosts in the cluster @@ -47,7 +47,7 @@ EXAMPLES = ''' name: test_volume status_filter: rebalance register: rebalance_status -- debug: +- ansible.builtin.debug: var: rebalance_status ''' diff --git a/plugins/modules/storage/netapp/na_ontap_gather_facts.py b/plugins/modules/storage/netapp/na_ontap_gather_facts.py index 640e5d5f14..0fc61afbbb 100644 --- a/plugins/modules/storage/netapp/na_ontap_gather_facts.py +++ b/plugins/modules/storage/netapp/na_ontap_gather_facts.py @@ -54,7 +54,7 @@ EXAMPLES = ''' hostname: "na-vsim" username: "admin" password: "admins_password" -- debug: +- ansible.builtin.debug: var: ontap_facts - name: Limit Fact Gathering to Aggregate Information community.general.na_ontap_gather_facts: diff --git a/plugins/modules/storage/zfs/zfs_facts.py b/plugins/modules/storage/zfs/zfs_facts.py index 960a5faf97..090c18368a 100644 --- a/plugins/modules/storage/zfs/zfs_facts.py +++ b/plugins/modules/storage/zfs/zfs_facts.py @@ -61,7 +61,7 @@ EXAMPLES = ''' recurse: yes type: filesystem -- debug: +- ansible.builtin.debug: msg: 'ZFS dataset {{ item.name }} consumes {{ item.used }} of disk space.' with_items: '{{ ansible_zfs_datasets }}' ''' diff --git a/plugins/modules/storage/zfs/zpool_facts.py b/plugins/modules/storage/zfs/zpool_facts.py index 55f00bb2f5..f5eae30c62 100644 --- a/plugins/modules/storage/zfs/zpool_facts.py +++ b/plugins/modules/storage/zfs/zpool_facts.py @@ -45,7 +45,7 @@ EXAMPLES = ''' community.general.zpool_facts: properties='free,size' - name: Print gathered information - debug: + ansible.builtin.debug: msg: 'ZFS pool {{ item.name }} has {{ item.free }} free space out of {{ item.size }}.' with_items: '{{ ansible_zfs_pools }}' ''' diff --git a/plugins/modules/system/listen_ports_facts.py b/plugins/modules/system/listen_ports_facts.py index efa925a2c8..27ecca8f50 100644 --- a/plugins/modules/system/listen_ports_facts.py +++ b/plugins/modules/system/listen_ports_facts.py @@ -25,7 +25,7 @@ EXAMPLES = r''' community.general.listen_ports_facts: - name: TCP whitelist violation - debug: + ansible.builtin.debug: msg: TCP port {{ item.port }} by pid {{ item.pid }} violates the whitelist vars: tcp_listen_violations: "{{ ansible_facts.tcp_listen | selectattr('port', 'in', tcp_whitelist) | list }}" @@ -35,15 +35,15 @@ EXAMPLES = r''' loop: "{{ tcp_listen_violations }}" - name: List TCP ports - debug: + ansible.builtin.debug: msg: "{{ ansible_facts.tcp_listen | map(attribute='port') | sort | list }}" - name: List UDP ports - debug: + ansible.builtin.debug: msg: "{{ ansible_facts.udp_listen | map(attribute='port') | sort | list }}" - name: List all ports - debug: + ansible.builtin.debug: msg: "{{ (ansible_facts.tcp_listen + ansible_facts.udp_listen) | map(attribute='port') | unique | sort | list }}" ''' diff --git a/plugins/modules/system/nosh.py b/plugins/modules/system/nosh.py index 818887c3ff..a43b0f58c2 100644 --- a/plugins/modules/system/nosh.py +++ b/plugins/modules/system/nosh.py @@ -92,11 +92,11 @@ EXAMPLES = ''' register: result - name: Fail if service not loaded - fail: msg="The {{ result.name }} service is not loaded" + ansible.builtin.fail: msg="The {{ result.name }} service is not loaded" when: not result.status - name: Fail if service is running - fail: msg="The {{ result.name }} service is running" + ansible.builtin.fail: msg="The {{ result.name }} service is running" when: result.status and result.status['DaemontoolsEncoreState'] == "running" ''' diff --git a/plugins/modules/system/pids.py b/plugins/modules/system/pids.py index a8b9440630..1bee180b08 100644 --- a/plugins/modules/system/pids.py +++ b/plugins/modules/system/pids.py @@ -27,7 +27,7 @@ EXAMPLES = ''' register: pids_of_python - name: Printing the process IDs obtained - debug: + ansible.builtin.debug: msg: "PIDS of python:{{pids_of_python.pids|join(',')}}" ''' diff --git a/plugins/modules/system/sefcontext.py b/plugins/modules/system/sefcontext.py index 6a399a0782..9d423266e5 100644 --- a/plugins/modules/system/sefcontext.py +++ b/plugins/modules/system/sefcontext.py @@ -92,7 +92,7 @@ EXAMPLES = r''' state: present - name: Apply new SELinux file context to filesystem - command: restorecon -irv /srv/git_repos + ansible.builtin.command: restorecon -irv /srv/git_repos ''' RETURN = r''' diff --git a/plugins/modules/system/syspatch.py b/plugins/modules/system/syspatch.py index 5dbfff4546..1a26f07b4f 100644 --- a/plugins/modules/system/syspatch.py +++ b/plugins/modules/system/syspatch.py @@ -53,7 +53,7 @@ EXAMPLES = ''' register: syspatch - name: Reboot if patch requires it - reboot: + ansible.builtin.reboot: when: syspatch.reboot_needed ''' diff --git a/plugins/modules/web_infrastructure/deploy_helper.py b/plugins/modules/web_infrastructure/deploy_helper.py index 8622a79949..28271957b8 100644 --- a/plugins/modules/web_infrastructure/deploy_helper.py +++ b/plugins/modules/web_infrastructure/deploy_helper.py @@ -148,12 +148,12 @@ EXAMPLES = ''' community.general.deploy_helper: path: /path/to/root - name: Clone the project to the new release folder - git: - repo: git://foosball.example.org/path/to/repo.git + ansible.builtin.git: + repo: ansible.builtin.git://foosball.example.org/path/to/repo.git dest: '{{ deploy_helper.new_release_path }}' version: v1.1.1 - name: Add an unfinished file, to allow cleanup on successful finalize - file: + ansible.builtin.file: path: '{{ deploy_helper.new_release_path }}/{{ deploy_helper.unfinished_filename }}' state: touch - name: Perform some build steps, like running your dependency manager for example @@ -161,14 +161,14 @@ EXAMPLES = ''' command: install working_dir: '{{ deploy_helper.new_release_path }}' - name: Create some folders in the shared folder - file: + ansible.builtin.file: path: '{{ deploy_helper.shared_path }}/{{ item }}' state: directory with_items: - sessions - uploads - name: Add symlinks from the new release to the shared folder - file: + ansible.builtin.file: path: '{{ deploy_helper.new_release_path }}/{{ item.path }}' src: '{{ deploy_helper.shared_path }}/{{ item.src }}' state: link @@ -256,7 +256,7 @@ EXAMPLES = ''' # Debugging the facts returned by the module - community.general.deploy_helper: path: /path/to/root -- debug: +- ansible.builtin.debug: var: deploy_helper ''' import os diff --git a/plugins/modules/web_infrastructure/jenkins_plugin.py b/plugins/modules/web_infrastructure/jenkins_plugin.py index 34a874bc1a..39fc4c5385 100644 --- a/plugins/modules/web_infrastructure/jenkins_plugin.py +++ b/plugins/modules/web_infrastructure/jenkins_plugin.py @@ -204,13 +204,13 @@ EXAMPLES = ''' with_items: "{{ my_jenkins_plugin_unversioned.results }}" - name: Restart Jenkins if required - service: + ansible.builtin.service: name: jenkins state: restarted when: jenkins_restart_required - name: Wait for Jenkins to start up - uri: + ansible.builtin.uri: url: http://localhost:8080 status_code: 200 timeout: 5 diff --git a/tests/integration/targets/setup_postgresql_db/tasks/main.yml b/tests/integration/targets/setup_postgresql_db/tasks/main.yml index b6898d863d..994ab359d8 100644 --- a/tests/integration/targets/setup_postgresql_db/tasks/main.yml +++ b/tests/integration/targets/setup_postgresql_db/tasks/main.yml @@ -2,6 +2,10 @@ - meta: end_play when: ansible_os_family == 'Suse' +# To avoid hangings on service start/stop postgres during CI runs: +- meta: end_play + when: ansible_facts.distribution == 'CentOS' and ansible_facts.distribution_major_version == '8' + - name: python 2 set_fact: python_suffix: ''