F5Networks / f5-ansible

Imperative Ansible modules for F5 BIG-IP products
GNU General Public License v3.0
375 stars 229 forks source link

f5networks.f5_modules.bigip_device_info expects DO/TS/CFE/AS3 to be installed #2050

Closed codecowboydotio closed 3 years ago

codecowboydotio commented 3 years ago
COMPONENT NAME

f5networks.f5_modules.bigip_device_info

Environment

ANSIBLE VERSION
[root@fedora ansible]# ansible --version
ansible 2.9.21
  config file = /etc/ansible/ansible.cfg
  configured module search path = ['/root/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
  ansible python module location = /usr/lib/python3.9/site-packages/ansible
  executable location = /usr/bin/ansible
  python version = 3.9.5 (default, May 14 2021, 00:00:00) [GCC 11.1.1 20210428 (Red Hat 11.1.1-1)]
[root@fedora ansible]#
BIGIP VERSION

Sys::Version
Main Package
  Product     BIG-IP
  Version     16.0.1.1
  Build       0.0.6
  Edition     Point Release 1
  Date        Fri Jan 29 01:37:28 PST 2021
CONFIGURATION

No changes in ansible.cfg

OS / ENVIRONMENT

[root@fedora ansible]# more /etc/redhat-release Fedora release 34 (Thirty Four)

SUMMARY

The module f5networks.f5_modules.bigip_device_info expects DO/TS/CFE/AS3 to be installed and if any of these are not installed, it leads to a failure of gathering device info.

While there are separate options for gathering the subset of as,cfe,do and ts, there are no separate options to exclude these.

STEPS TO REPRODUCE
- name: Base VE config
  hosts: "{{ target_hosts | default('f5') }}"

  vars:
    bigip_provider:
      server: 10.1.1.245
      user: admin
      password: admin
      validate_certs: no

  tasks:
  - name: get device facts
    f5networks.f5_modules.bigip_device_info:
      gather_subset:
        - all
        - "!as3"
      provider: "{{ bigip_provider }}"
    delegate_to: localhost
    register: bigip_facts

Similarly if one or more of AS3, CFE, DO or TS is not installed on the BIG-IP the following playbook will fail

- name: Base VE config
  hosts: "{{ target_hosts | default('f5') }}"

  vars:
    bigip_provider:
      server: 10.1.1.245
      user: admin
      password: admin
      validate_certs: no

  tasks:
  - name: get device facts
    f5networks.f5_modules.bigip_device_info:
      gather_subset:
        - all
      provider: "{{ bigip_provider }}"
    delegate_to: localhost
    register: bigip_facts
EXPECTED RESULTS

I would expect that there are separate options to exclude each of the following: AS3, CFE, DO and TS

ACTUAL RESULTS
[root@fedora ansible]# ansible-playbook f5-facts.yml -vvvvv
ansible-playbook 2.9.21
  config file = /etc/ansible/ansible.cfg
  configured module search path = ['/root/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
  ansible python module location = /usr/lib/python3.9/site-packages/ansible
  executable location = /usr/bin/ansible-playbook
  python version = 3.9.5 (default, May 14 2021, 00:00:00) [GCC 11.1.1 20210428 (Red Hat 11.1.1-1)]
Using /etc/ansible/ansible.cfg as config file
setting up inventory plugins
host_list declined parsing /etc/ansible/hosts as it did not pass its verify_file() method
script declined parsing /etc/ansible/hosts as it did not pass its verify_file() method
auto declined parsing /etc/ansible/hosts as it did not pass its verify_file() method
Set default localhost to localhost
Not replacing invalid character(s) "{'-'}" in group name (api-client)
[WARNING]: Invalid characters were found in group names but not replaced, use -vvvv to see details
Not replacing invalid character(s) "{'-'}" in group name (api-client)
Parsed /etc/ansible/hosts inventory source with ini plugin
Loading callback plugin default of type stdout, v2.0 from /usr/lib/python3.9/site-packages/ansible/plugins/callback/default.py
Attempting to use 'actionable' callback.
Skipping callback 'actionable', as we already have a stdout callback.
Attempting to use 'aws_resource_actions' callback.
Attempting to use 'cgroup_memory_recap' callback.
Attempting to use 'cgroup_perf_recap' callback.
Attempting to use 'context_demo' callback.
Attempting to use 'counter_enabled' callback.
Skipping callback 'counter_enabled', as we already have a stdout callback.
Attempting to use 'debug' callback.
Skipping callback 'debug', as we already have a stdout callback.
Attempting to use 'dense' callback.
Skipping callback 'dense', as we already have a stdout callback.
Attempting to use 'dense' callback.
Skipping callback 'dense', as we already have a stdout callback.
Attempting to use 'foreman' callback.
Attempting to use 'full_skip' callback.
Skipping callback 'full_skip', as we already have a stdout callback.
Attempting to use 'grafana_annotations' callback.
Attempting to use 'hipchat' callback.
Attempting to use 'jabber' callback.
Attempting to use 'json' callback.
Skipping callback 'json', as we already have a stdout callback.
Attempting to use 'junit' callback.
Attempting to use 'log_plays' callback.
Attempting to use 'logdna' callback.
Attempting to use 'logentries' callback.
Attempting to use 'logstash' callback.
Attempting to use 'mail' callback.
Attempting to use 'minimal' callback.
Skipping callback 'minimal', as we already have a stdout callback.
Attempting to use 'nrdp' callback.
Attempting to use 'null' callback.
Skipping callback 'null', as we already have a stdout callback.
Attempting to use 'oneline' callback.
Skipping callback 'oneline', as we already have a stdout callback.
Attempting to use 'osx_say' callback.
Attempting to use 'profile_roles' callback.
Attempting to use 'profile_tasks' callback.
Attempting to use 'say' callback.
Attempting to use 'selective' callback.
Skipping callback 'selective', as we already have a stdout callback.
Attempting to use 'skippy' callback.
Skipping callback 'skippy', as we already have a stdout callback.
Attempting to use 'slack' callback.
Attempting to use 'splunk' callback.
Attempting to use 'stderr' callback.
Skipping callback 'stderr', as we already have a stdout callback.
Attempting to use 'sumologic' callback.
Attempting to use 'syslog_json' callback.
Attempting to use 'timer' callback.
Attempting to use 'tree' callback.
Attempting to use 'unixy' callback.
Skipping callback 'unixy', as we already have a stdout callback.
Attempting to use 'yaml' callback.
Skipping callback 'yaml', as we already have a stdout callback.

PLAYBOOK: f5-facts.yml *********************************************************************************************************************************
Positional arguments: f5-facts.yml
verbosity: 5
connection: smart
timeout: 10
become_method: sudo
tags: ('all',)
inventory: ('/etc/ansible/hosts',)
forks: 5
1 plays in f5-facts.yml

PLAY [Base VE config] **********************************************************************************************************************************

TASK [Gathering Facts] *********************************************************************************************************************************
task path: /root/ansible/f5-facts.yml:1
<10.1.1.245> ESTABLISH SSH CONNECTION FOR USER: None
<10.1.1.245> SSH: ansible.cfg set ssh_args: (-C)(-o)(ControlMaster=auto)(-o)(ControlPersist=60s)
<10.1.1.245> SSH: ANSIBLE_HOST_KEY_CHECKING/host_key_checking disabled: (-o)(StrictHostKeyChecking=no)
<10.1.1.245> SSH: ansible_password/ansible_ssh_password not set: (-o)(KbdInteractiveAuthentication=no)(-o)(PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey)(-o)(PasswordAuthentication=no)
<10.1.1.245> SSH: ANSIBLE_TIMEOUT/timeout set: (-o)(ConnectTimeout=10)
<10.1.1.245> SSH: PlayContext set ssh_common_args: ()
<10.1.1.245> SSH: PlayContext set ssh_extra_args: ()
<10.1.1.245> SSH: found only ControlPersist; added ControlPath: (-o)(ControlPath=/root/.ansible/cp/9c7f71fc83)
<10.1.1.245> SSH: EXEC ssh -vvv -C -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/root/.ansible/cp/9c7f71fc83 10.1.1.245 '/bin/sh -c '"'"'echo ~ && sleep 0'"'"''
<10.1.1.245> (0, b'/root\n', b'OpenSSH_8.6p1, OpenSSL 1.1.1k  FIPS 25 Mar 2021\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for \'final all\' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: not matched \'final\'\r\ndebug2: match not found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1 (parse only)\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug1: configuration requests final Match pass\r\ndebug2: resolve_canonicalize: hostname 10.1.1.245 is address\r\ndebug1: re-parsing configuration\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for \'final all\' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: matched \'final\'\r\ndebug2: match found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug3: expanded UserKnownHostsFile \'~/.ssh/known_hosts\' -> \'/root/.ssh/known_hosts\'\r\ndebug3: expanded UserKnownHostsFile \'~/.ssh/known_hosts2\' -> \'/root/.ssh/known_hosts2\'\r\ndebug1: auto-mux: Trying existing master\r\ndebug1: Control socket "/root/.ansible/cp/9c7f71fc83" does not exist\r\ndebug3: ssh_connect_direct: entering\r\ndebug1: Connecting to 10.1.1.245 [10.1.1.245] port 22.\r\ndebug3: set_sock_tos: set socket 5 IP_TOS 0x48\r\ndebug2: fd 5 setting O_NONBLOCK\r\ndebug1: fd 5 clearing O_NONBLOCK\r\ndebug1: Connection established.\r\ndebug3: timeout: 10000 ms remain after connect\r\ndebug1: identity file /root/.ssh/id_rsa type 0\r\ndebug1: identity file /root/.ssh/id_rsa-cert type -1\r\ndebug1: identity file /root/.ssh/id_dsa type -1\r\ndebug1: identity file /root/.ssh/id_dsa-cert type -1\r\ndebug1: identity file /root/.ssh/id_ecdsa type -1\r\ndebug1: identity file /root/.ssh/id_ecdsa-cert type -1\r\ndebug1: identity file /root/.ssh/id_ecdsa_sk type -1\r\ndebug1: identity file /root/.ssh/id_ecdsa_sk-cert type -1\r\ndebug1: identity file /root/.ssh/id_ed25519 type -1\r\ndebug1: identity file /root/.ssh/id_ed25519-cert type -1\r\ndebug1: identity file /root/.ssh/id_ed25519_sk type -1\r\ndebug1: identity file /root/.ssh/id_ed25519_sk-cert type -1\r\ndebug1: identity file /root/.ssh/id_xmss type -1\r\ndebug1: identity file /root/.ssh/id_xmss-cert type -1\r\ndebug1: Local version string SSH-2.0-OpenSSH_8.6\r\ndebug1: Remote protocol version 2.0, remote software version OpenSSH_7.4\r\ndebug1: compat_banner: match: OpenSSH_7.4 pat OpenSSH_7.4* compat 0x04000006\r\ndebug2: fd 5 setting O_NONBLOCK\r\ndebug1: Authenticating to 10.1.1.245:22 as \'root\'\r\ndebug3: record_hostkey: found key type ECDSA in file /root/.ssh/known_hosts:595\r\ndebug3: record_hostkey: found key type RSA in file /root/.ssh/known_hosts:720\r\ndebug3: record_hostkey: found key type ED25519 in file /root/.ssh/known_hosts:721\r\ndebug3: load_hostkeys_file: loaded 3 keys from 10.1.1.245\r\ndebug1: load_hostkeys: fopen /root/.ssh/known_hosts2: No such file or directory\r\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\r\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\r\ndebug3: order_hostkeyalgs: have matching best-preference key type ssh-ed25519-cert-v01@openssh.com, using HostkeyAlgorithms verbatim\r\ndebug3: send packet: type 20\r\ndebug1: SSH2_MSG_KEXINIT sent\r\ndebug3: receive packet: type 20\r\ndebug1: SSH2_MSG_KEXINIT received\r\ndebug2: local client KEXINIT proposal\r\ndebug2: KEX algorithms: curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512,ext-info-c\r\ndebug2: host key algorithms: ssh-ed25519-cert-v01@openssh.com,ecdsa-sha2-nistp256-cert-v01@openssh.com,ecdsa-sha2-nistp384-cert-v01@openssh.com,ecdsa-sha2-nistp521-cert-v01@openssh.com,sk-ssh-ed25519-cert-v01@openssh.com,sk-ecdsa-sha2-nistp256-cert-v01@openssh.com,rsa-sha2-512-cert-v01@openssh.com,rsa-sha2-256-cert-v01@openssh.com,ssh-rsa-cert-v01@openssh.com,ssh-ed25519,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ssh-ed25519@openssh.com,sk-ecdsa-sha2-nistp256@openssh.com,rsa-sha2-512,rsa-sha2-256,ssh-rsa\r\ndebug2: ciphers ctos: aes256-gcm@openssh.com,chacha20-poly1305@openssh.com,aes256-ctr,aes128-gcm@openssh.com,aes128-ctr\r\ndebug2: ciphers stoc: aes256-gcm@openssh.com,chacha20-poly1305@openssh.com,aes256-ctr,aes128-gcm@openssh.com,aes128-ctr\r\ndebug2: MACs ctos: hmac-sha2-256-etm@openssh.com,hmac-sha1-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512-etm@openssh.com,hmac-sha2-256,hmac-sha1,umac-128@openssh.com,hmac-sha2-512\r\ndebug2: MACs stoc: hmac-sha2-256-etm@openssh.com,hmac-sha1-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512-etm@openssh.com,hmac-sha2-256,hmac-sha1,umac-128@openssh.com,hmac-sha2-512\r\ndebug2: compression ctos: zlib@openssh.com,zlib,none\r\ndebug2: compression stoc: zlib@openssh.com,zlib,none\r\ndebug2: languages ctos: \r\ndebug2: languages stoc: \r\ndebug2: first_kex_follows 0 \r\ndebug2: reserved 0 \r\ndebug2: peer server KEXINIT proposal\r\ndebug2: KEX algorithms: ecdh-sha2-nistp256,ecdh-sha2-nistp384,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1\r\ndebug2: host key algorithms: ssh-rsa,rsa-sha2-512,rsa-sha2-256,ecdsa-sha2-nistp256,ssh-ed25519\r\ndebug2: ciphers ctos: aes128-gcm@openssh.com,aes256-gcm@openssh.com,aes128-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,aes192-cbc\r\ndebug2: ciphers stoc: aes128-gcm@openssh.com,aes256-gcm@openssh.com,aes128-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,aes192-cbc\r\ndebug2: MACs ctos: hmac-sha1\r\ndebug2: MACs stoc: hmac-sha1\r\ndebug2: compression ctos: none,zlib@openssh.com\r\ndebug2: compression stoc: none,zlib@openssh.com\r\ndebug2: languages ctos: \r\ndebug2: languages stoc: \r\ndebug2: first_kex_follows 0 \r\ndebug2: reserved 0 \r\ndebug1: kex: algorithm: ecdh-sha2-nistp256\r\ndebug1: kex: host key algorithm: ssh-ed25519\r\ndebug1: kex: server->client cipher: aes256-gcm@openssh.com MAC: <implicit> compression: zlib@openssh.com\r\ndebug1: kex: client->server cipher: aes256-gcm@openssh.com MAC: <implicit> compression: zlib@openssh.com\r\ndebug1: kex: ecdh-sha2-nistp256 need=32 dh_need=32\r\ndebug1: kex: ecdh-sha2-nistp256 need=32 dh_need=32\r\ndebug3: send packet: type 30\r\ndebug1: expecting SSH2_MSG_KEX_ECDH_REPLY\r\ndebug3: receive packet: type 31\r\ndebug1: SSH2_MSG_KEX_ECDH_REPLY received\r\ndebug1: Server host key: ssh-ed25519 SHA256:C3oXL1dOl/Xiddkgl5qfiTfxUzZOyfzW2eGa9FpCPUs\r\ndebug3: record_hostkey: found key type ECDSA in file /root/.ssh/known_hosts:595\r\ndebug3: record_hostkey: found key type RSA in file /root/.ssh/known_hosts:720\r\ndebug3: record_hostkey: found key type ED25519 in file /root/.ssh/known_hosts:721\r\ndebug3: load_hostkeys_file: loaded 3 keys from 10.1.1.245\r\ndebug1: load_hostkeys: fopen /root/.ssh/known_hosts2: No such file or directory\r\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory\r\ndebug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts2: No such file or directory\r\ndebug1: Host \'10.1.1.245\' is known and matches the ED25519 host key.\r\ndebug1: Found key in /root/.ssh/known_hosts:721\r\ndebug3: send packet: type 21\r\ndebug2: set_newkeys: mode 1\r\ndebug1: rekey out after 4294967296 blocks\r\ndebug1: SSH2_MSG_NEWKEYS sent\r\ndebug1: expecting SSH2_MSG_NEWKEYS\r\ndebug3: receive packet: type 21\r\ndebug1: SSH2_MSG_NEWKEYS received\r\ndebug2: set_newkeys: mode 0\r\ndebug1: rekey in after 4294967296 blocks\r\ndebug1: Will attempt key: /root/.ssh/id_rsa RSA SHA256:gLsZYdpZ9qqTxzZG36gfromGVXlxe3khy2nUj7niNbs\r\ndebug1: Will attempt key: /root/.ssh/id_dsa \r\ndebug1: Will attempt key: /root/.ssh/id_ecdsa \r\ndebug1: Will attempt key: /root/.ssh/id_ecdsa_sk \r\ndebug1: Will attempt key: /root/.ssh/id_ed25519 \r\ndebug1: Will attempt key: /root/.ssh/id_ed25519_sk \r\ndebug1: Will attempt key: /root/.ssh/id_xmss \r\ndebug2: pubkey_prepare: done\r\ndebug3: send packet: type 5\r\ndebug3: receive packet: type 7\r\ndebug1: SSH2_MSG_EXT_INFO received\r\ndebug1: kex_input_ext_info: server-sig-algs=<rsa-sha2-256,rsa-sha2-512>\r\ndebug3: receive packet: type 6\r\ndebug2: service_accept: ssh-userauth\r\ndebug1: SSH2_MSG_SERVICE_ACCEPT received\r\ndebug3: send packet: type 50\r\ndebug3: receive packet: type 51\r\ndebug1: Authentications that can continue: publickey,keyboard-interactive,hostbased\r\ndebug3: start over, passed a different list publickey,keyboard-interactive,hostbased\r\ndebug3: preferred gssapi-with-mic,gssapi-keyex,hostbased,publickey\r\ndebug3: authmethod_lookup hostbased\r\ndebug3: remaining preferred: publickey\r\ndebug3: authmethod_lookup publickey\r\ndebug3: remaining preferred: \r\ndebug3: authmethod_is_enabled publickey\r\ndebug1: Next authentication method: publickey\r\ndebug1: Offering public key: /root/.ssh/id_rsa RSA SHA256:gLsZYdpZ9qqTxzZG36gfromGVXlxe3khy2nUj7niNbs\r\ndebug3: send packet: type 50\r\ndebug2: we sent a publickey packet, wait for reply\r\ndebug3: receive packet: type 60\r\ndebug1: Server accepts key: /root/.ssh/id_rsa RSA SHA256:gLsZYdpZ9qqTxzZG36gfromGVXlxe3khy2nUj7niNbs\r\ndebug3: sign_and_send_pubkey: RSA SHA256:gLsZYdpZ9qqTxzZG36gfromGVXlxe3khy2nUj7niNbs\r\ndebug3: sign_and_send_pubkey: signing using rsa-sha2-256 SHA256:gLsZYdpZ9qqTxzZG36gfromGVXlxe3khy2nUj7niNbs\r\ndebug3: send packet: type 50\r\ndebug3: receive packet: type 52\r\ndebug1: Enabling compression at level 6.\r\ndebug1: Authentication succeeded (publickey).\r\nAuthenticated to 10.1.1.245 ([10.1.1.245]:22).\r\ndebug1: pkcs11_del_provider: called, provider_id = (null)\r\ndebug1: setting up multiplex master socket\r\ndebug3: muxserver_listen: temporary control path /root/.ansible/cp/9c7f71fc83.VVad3sYQQkrQRjay\r\ndebug2: fd 6 setting O_NONBLOCK\r\ndebug3: fd 6 is O_NONBLOCK\r\ndebug1: channel 0: new [/root/.ansible/cp/9c7f71fc83]\r\ndebug3: muxserver_listen: mux listener channel 0 fd 6\r\ndebug2: fd 5 setting TCP_NODELAY\r\ndebug3: set_sock_tos: set socket 5 IP_TOS 0x20\r\ndebug1: control_persist_detach: backgrounding master process\r\ndebug2: control_persist_detach: background process is 4018\r\ndebug2: fd 6 setting O_NONBLOCK\r\ndebug1: forking to background\r\ndebug1: Entering interactive session.\r\ndebug1: pledge: id\r\ndebug2: set_control_persist_exit_time: schedule exit in 60 seconds\r\ndebug1: multiplexing control connection\r\ndebug2: fd 7 setting O_NONBLOCK\r\ndebug1: channel 1: new [mux-control]\r\ndebug3: channel_post_mux_listener: new mux channel 1 fd 7\r\ndebug3: mux_master_read_cb: channel 1: hello sent\r\ndebug2: set_control_persist_exit_time: cancel scheduled exit\r\ndebug3: mux_master_read_cb: channel 1 packet type 0x00000001 len 4\r\ndebug2: mux_master_process_hello: channel 1 client version 4\r\ndebug2: mux_client_hello_exchange: master version 4\r\ndebug3: mux_client_forwards: request forwardings: 0 local, 0 remote\r\ndebug3: mux_client_request_session: entering\r\ndebug3: mux_client_request_alive: entering\r\ndebug3: mux_master_read_cb: channel 1 packet type 0x10000004 len 4\r\ndebug2: mux_master_process_alive_check: channel 1: alive check\r\ndebug3: mux_client_request_alive: done pid = 4020\r\ndebug3: mux_master_read_cb: channel 1 packet type 0x10000002 len 91\r\ndebug2: mux_master_process_new_session: channel 1: request tty 0, X 0, agent 0, subsys 0, term "xterm", cmd "/bin/sh -c \'echo ~ && sleep 0\'", env 1\r\ndebug3: mm_receive_fd: recvmsg: Resource temporarily unavailable\r\ndebug3: mm_receive_fd: recvmsg: Resource temporarily unavailable\r\ndebug3: mm_receive_fd: recvmsg: Resource temporarily unavailable\r\ndebug3: mux_master_process_new_session: got fds stdin 8, stdout 9, stderr 10\r\ndebug2: fd 9 setting O_NONBLOCK\r\ndebug2: fd 10 setting O_NONBLOCK\r\ndebug1: channel 2: new [client-session]\r\ndebug2: mux_master_process_new_session: channel_new: 2 linked to control channel 1\r\ndebug2: channel 2: send open\r\ndebug3: send packet: type 90\r\ndebug3: mux_client_request_session: session request sent\r\ndebug3: receive packet: type 80\r\ndebug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0\r\ndebug3: client_input_hostkeys: received RSA key SHA256:M3d/bFHVkr2ykD9XSPvAXkfLc+KVw8XizUCyEKBNPt4\r\ndebug3: client_input_hostkeys: received DSA key SHA256:huOfZ52eJbMfpdXcbDo4cdCwShpeFc0LIPxSMdEbXqQ\r\ndebug3: client_input_hostkeys: ssh-dss key not permitted by HostkeyAlgorithms\r\ndebug3: client_input_hostkeys: received ECDSA key SHA256:YdOvi7picTmEDQskCAUlCJwSBTG06f9KCL3f/k3n6S0\r\ndebug3: client_input_hostkeys: received ED25519 key SHA256:C3oXL1dOl/Xiddkgl5qfiTfxUzZOyfzW2eGa9FpCPUs\r\ndebug1: client_input_hostkeys: searching /root/.ssh/known_hosts for 10.1.1.245 / (none)\r\ndebug3: hostkeys_foreach: reading file "/root/.ssh/known_hosts"\r\ndebug3: hostkeys_find: found ecdsa-sha2-nistp256 key at /root/.ssh/known_hosts:595\r\ndebug3: hostkeys_find: found ssh-rsa key at /root/.ssh/known_hosts:720\r\ndebug3: hostkeys_find: found ssh-ed25519 key at /root/.ssh/known_hosts:721\r\ndebug1: client_input_hostkeys: searching /root/.ssh/known_hosts2 for 10.1.1.245 / (none)\r\ndebug1: client_input_hostkeys: hostkeys file /root/.ssh/known_hosts2 does not exist\r\ndebug3: client_input_hostkeys: 3 server keys: 0 new, 3 retained, 0 incomplete match. 0 to remove\r\ndebug1: client_input_hostkeys: no new or deprecated keys from server\r\ndebug3: receive packet: type 91\r\ndebug2: channel_input_open_confirmation: channel 2: callback start\r\ndebug2: client_session2_setup: id 2\r\ndebug1: Sending environment.\r\ndebug1: channel 2: setting env LANG = "en_AU.UTF-8"\r\ndebug2: channel 2: request env confirm 0\r\ndebug3: send packet: type 98\r\ndebug1: Sending command: /bin/sh -c \'echo ~ && sleep 0\'\r\ndebug2: channel 2: request exec confirm 1\r\ndebug3: send packet: type 98\r\ndebug3: mux_session_confirm: sending success reply\r\ndebug2: channel_input_open_confirmation: channel 2: callback done\r\ndebug2: channel 2: open confirm rwindow 0 rmax 32768\r\ndebug1: mux_client_request_session: master session id: 2\r\ndebug2: channel 2: rcvd adjust 2097152\r\ndebug3: receive packet: type 99\r\ndebug2: channel_input_status_confirm: type 99 id 2\r\ndebug2: exec request accepted on channel 2\r\ndebug3: receive packet: type 96\r\ndebug2: channel 2: rcvd eof\r\ndebug2: channel 2: output open -> drain\r\ndebug2: channel 2: obuf empty\r\ndebug2: chan_shutdown_write: channel 2: (i0 o1 sock -1 wfd 9 efd 10 [write])\r\ndebug2: channel 2: output drain -> closed\r\ndebug3: receive packet: type 98\r\ndebug1: client_input_channel_req: channel 2 rtype exit-status reply 0\r\ndebug3: mux_exit_message: channel 2: exit message, exitval 0\r\ndebug3: receive packet: type 98\r\ndebug1: client_input_channel_req: channel 2 rtype eow@openssh.com reply 0\r\ndebug2: channel 2: rcvd eow\r\ndebug2: chan_shutdown_read: channel 2: (i0 o3 sock -1 wfd 8 efd 10 [write])\r\ndebug2: channel 2: input open -> closed\r\ndebug3: receive packet: type 97\r\ndebug2: channel 2: rcvd close\r\ndebug3: channel 2: will not send data after close\r\ndebug2: channel 2: send close\r\ndebug3: send packet: type 97\r\ndebug2: channel 2: is dead\r\ndebug2: channel 2: gc: notify user\r\ndebug3: mux_master_session_cleanup_cb: entering for channel 2\r\ndebug2: channel 1: rcvd close\r\ndebug2: channel 1: output open -> drain\r\ndebug2: chan_shutdown_read: channel 1: (i0 o1 sock 7 wfd 7 efd -1 [closed])\r\ndebug2: channel 1: input open -> closed\r\ndebug2: channel 2: gc: user detached\r\ndebug2: channel 2: is dead\r\ndebug2: channel 2: garbage collecting\r\ndebug1: channel 2: free: client-session, nchannels 3\r\ndebug3: channel 2: status: The following connections are open:\r\n  #1 mux-control (t16 nr0 i3/0 o1/16 e[closed]/0 fd 7/7/-1 sock 7 cc -1)\r\n  #2 client-session (t4 r0 i3/0 o3/0 e[write]/0 fd -1/-1/10 sock -1 cc -1)\r\n\r\ndebug2: channel 1: obuf empty\r\ndebug2: chan_shutdown_write: channel 1: (i3 o1 sock 7 wfd 7 efd -1 [closed])\r\ndebug2: channel 1: output drain -> closed\r\ndebug2: channel 1: is dead (local)\r\ndebug2: channel 1: gc: notify user\r\ndebug3: mux_master_control_cleanup_cb: entering for channel 1\r\ndebug2: channel 1: gc: user detached\r\ndebug2: channel 1: is dead (local)\r\ndebug2: channel 1: garbage collecting\r\ndebug1: channel 1: free: mux-control, nchannels 2\r\ndebug3: channel 1: status: The following connections are open:\r\n  #1 mux-control (t16 nr0 i3/0 o3/0 e[closed]/0 fd 7/7/-1 sock 7 cc -1)\r\n\r\ndebug2: set_control_persist_exit_time: schedule exit in 60 seconds\r\ndebug3: mux_client_read_packet: read header failed: Broken pipe\r\ndebug2: Received exit status from master 0\r\n')
<10.1.1.245> ESTABLISH SSH CONNECTION FOR USER: None
<10.1.1.245> SSH: ansible.cfg set ssh_args: (-C)(-o)(ControlMaster=auto)(-o)(ControlPersist=60s)
<10.1.1.245> SSH: ANSIBLE_HOST_KEY_CHECKING/host_key_checking disabled: (-o)(StrictHostKeyChecking=no)
<10.1.1.245> SSH: ansible_password/ansible_ssh_password not set: (-o)(KbdInteractiveAuthentication=no)(-o)(PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey)(-o)(PasswordAuthentication=no)
<10.1.1.245> SSH: ANSIBLE_TIMEOUT/timeout set: (-o)(ConnectTimeout=10)
<10.1.1.245> SSH: PlayContext set ssh_common_args: ()
<10.1.1.245> SSH: PlayContext set ssh_extra_args: ()
<10.1.1.245> SSH: found only ControlPersist; added ControlPath: (-o)(ControlPath=/root/.ansible/cp/9c7f71fc83)
<10.1.1.245> SSH: EXEC ssh -vvv -C -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/root/.ansible/cp/9c7f71fc83 10.1.1.245 '/bin/sh -c '"'"'( umask 77 && mkdir -p "` echo /root/.ansible/tmp `"&& mkdir "` echo /root/.ansible/tmp/ansible-tmp-1623297907.7165537-4016-188632554475526 `" && echo ansible-tmp-1623297907.7165537-4016-188632554475526="` echo /root/.ansible/tmp/ansible-tmp-1623297907.7165537-4016-188632554475526 `" ) && sleep 0'"'"''
<10.1.1.245> (0, b'ansible-tmp-1623297907.7165537-4016-188632554475526=/root/.ansible/tmp/ansible-tmp-1623297907.7165537-4016-188632554475526\n', b"OpenSSH_8.6p1, OpenSSL 1.1.1k  FIPS 25 Mar 2021\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for 'final all' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: not matched 'final'\r\ndebug2: match not found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1 (parse only)\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug1: configuration requests final Match pass\r\ndebug2: resolve_canonicalize: hostname 10.1.1.245 is address\r\ndebug1: re-parsing configuration\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for 'final all' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: matched 'final'\r\ndebug2: match found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug3: expanded UserKnownHostsFile '~/.ssh/known_hosts' -> '/root/.ssh/known_hosts'\r\ndebug3: expanded UserKnownHostsFile '~/.ssh/known_hosts2' -> '/root/.ssh/known_hosts2'\r\ndebug1: auto-mux: Trying existing master\r\ndebug2: fd 5 setting O_NONBLOCK\r\ndebug2: mux_client_hello_exchange: master version 4\r\ndebug3: mux_client_forwards: request forwardings: 0 local, 0 remote\r\ndebug3: mux_client_request_session: entering\r\ndebug3: mux_client_request_alive: entering\r\ndebug3: mux_client_request_alive: done pid = 4020\r\ndebug3: mux_client_request_session: session request sent\r\ndebug1: mux_client_request_session: master session id: 2\r\ndebug3: mux_client_read_packet: read header failed: Broken pipe\r\ndebug2: Received exit status from master 0\r\n")
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/basic.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/ansible_collector.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/namespace.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/default_collectors.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/parsing/convert_bool.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/text/converters.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/file.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/_text.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/compat/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/parsing/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/text/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/sys_info.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/process.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/compat/selectors.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/validation.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/_json_compat.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/_utils.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/pycompat24.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/parameters.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/six/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/_collections_compat.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/text/formatters.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/distro/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/distro/_distro.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/compat/_selectors2.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/collections.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/timeout.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/collector.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/compat.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/hardware/hurd.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/virtual/netbsd.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/caps.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/distribution.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/user.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/lsb.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/selinux.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/virtual/sunos.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/base.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/aix.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/nvme.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/virtual/dragonfly.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/virtual/linux.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/virtual/openbsd.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/other/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/virtual/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/virtual/hpux.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/hurd.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/hardware/netbsd.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/hardware/darwin.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/virtual/freebsd.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/cmdline.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/iscsi.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/fc_wwn.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/local.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/hardware/sunos.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/virtual/base.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/hardware/dragonfly.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/hardware/openbsd.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/other/ohai.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/hardware/linux.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/chroot.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/ssh_pub_keys.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/hardware/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/hardware/hpux.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/netbsd.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/service_mgr.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/darwin.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/hardware/freebsd.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/fips.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/platform.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/dns.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/date_time.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/sunos.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/apparmor.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/hardware/base.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/hardware/aix.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/dragonfly.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/openbsd.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/linux.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/python.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/hpux.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/pkg_mgr.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/system/env.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/other/facter.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/freebsd.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/virtual/sysctl.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/utils.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/network/generic_bsd.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/facts/sysctl.py
<10.1.1.245> Attempting python interpreter discovery
<10.1.1.245> ESTABLISH SSH CONNECTION FOR USER: None
<10.1.1.245> SSH: ansible.cfg set ssh_args: (-C)(-o)(ControlMaster=auto)(-o)(ControlPersist=60s)
<10.1.1.245> SSH: ANSIBLE_HOST_KEY_CHECKING/host_key_checking disabled: (-o)(StrictHostKeyChecking=no)
<10.1.1.245> SSH: ansible_password/ansible_ssh_password not set: (-o)(KbdInteractiveAuthentication=no)(-o)(PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey)(-o)(PasswordAuthentication=no)
<10.1.1.245> SSH: ANSIBLE_TIMEOUT/timeout set: (-o)(ConnectTimeout=10)
<10.1.1.245> SSH: PlayContext set ssh_common_args: ()
<10.1.1.245> SSH: PlayContext set ssh_extra_args: ()
<10.1.1.245> SSH: found only ControlPersist; added ControlPath: (-o)(ControlPath=/root/.ansible/cp/9c7f71fc83)
<10.1.1.245> SSH: EXEC ssh -vvv -C -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/root/.ansible/cp/9c7f71fc83 10.1.1.245 '/bin/sh -c '"'"'echo PLATFORM; uname; echo FOUND; command -v '"'"'"'"'"'"'"'"'/usr/bin/python'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'python3.7'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'python3.6'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'python3.5'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'python2.7'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'python2.6'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'/usr/libexec/platform-python'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'/usr/bin/python3'"'"'"'"'"'"'"'"'; command -v '"'"'"'"'"'"'"'"'python'"'"'"'"'"'"'"'"'; echo ENDFOUND && sleep 0'"'"''
<10.1.1.245> (0, b'PLATFORM\nLinux\nFOUND\n/usr/bin/python\n/bin/python2.7\n/bin/python\nENDFOUND\n', b"OpenSSH_8.6p1, OpenSSL 1.1.1k  FIPS 25 Mar 2021\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for 'final all' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: not matched 'final'\r\ndebug2: match not found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1 (parse only)\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug1: configuration requests final Match pass\r\ndebug2: resolve_canonicalize: hostname 10.1.1.245 is address\r\ndebug1: re-parsing configuration\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for 'final all' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: matched 'final'\r\ndebug2: match found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug3: expanded UserKnownHostsFile '~/.ssh/known_hosts' -> '/root/.ssh/known_hosts'\r\ndebug3: expanded UserKnownHostsFile '~/.ssh/known_hosts2' -> '/root/.ssh/known_hosts2'\r\ndebug1: auto-mux: Trying existing master\r\ndebug2: fd 5 setting O_NONBLOCK\r\ndebug2: mux_client_hello_exchange: master version 4\r\ndebug3: mux_client_forwards: request forwardings: 0 local, 0 remote\r\ndebug3: mux_client_request_session: entering\r\ndebug3: mux_client_request_alive: entering\r\ndebug3: mux_client_request_alive: done pid = 4020\r\ndebug3: mux_client_request_session: session request sent\r\ndebug1: mux_client_request_session: master session id: 2\r\ndebug3: mux_client_read_packet: read header failed: Broken pipe\r\ndebug2: Received exit status from master 0\r\n")
<10.1.1.245> ESTABLISH SSH CONNECTION FOR USER: None
<10.1.1.245> SSH: ansible.cfg set ssh_args: (-C)(-o)(ControlMaster=auto)(-o)(ControlPersist=60s)
<10.1.1.245> SSH: ANSIBLE_HOST_KEY_CHECKING/host_key_checking disabled: (-o)(StrictHostKeyChecking=no)
<10.1.1.245> SSH: ansible_password/ansible_ssh_password not set: (-o)(KbdInteractiveAuthentication=no)(-o)(PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey)(-o)(PasswordAuthentication=no)
<10.1.1.245> SSH: ANSIBLE_TIMEOUT/timeout set: (-o)(ConnectTimeout=10)
<10.1.1.245> SSH: PlayContext set ssh_common_args: ()
<10.1.1.245> SSH: PlayContext set ssh_extra_args: ()
<10.1.1.245> SSH: found only ControlPersist; added ControlPath: (-o)(ControlPath=/root/.ansible/cp/9c7f71fc83)
<10.1.1.245> SSH: EXEC ssh -vvv -C -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/root/.ansible/cp/9c7f71fc83 10.1.1.245 '/bin/sh -c '"'"'/usr/bin/python && sleep 0'"'"''
<10.1.1.245> (0, b'{"osrelease_content": "NAME=\\"CentOS Linux\\"\\nVERSION=\\"7 (Core)\\"\\nID=\\"centos\\"\\nID_LIKE=\\"rhel fedora\\"\\nVERSION_ID=\\"7\\"\\nPRETTY_NAME=\\"CentOS Linux 7 (Core)\\"\\nANSI_COLOR=\\"0;31\\"\\nCPE_NAME=\\"cpe:/o:centos:centos:7\\"\\nHOME_URL=\\"https://www.centos.org/\\"\\nBUG_REPORT_URL=\\"https://bugs.centos.org/\\"\\n\\nCENTOS_MANTISBT_PROJECT=\\"CentOS-7\\"\\nCENTOS_MANTISBT_PROJECT_VERSION=\\"7\\"\\nREDHAT_SUPPORT_PRODUCT=\\"centos\\"\\nREDHAT_SUPPORT_PRODUCT_VERSION=\\"7\\"\\n\\n", "platform_dist_result": ["centos", "7.3.1611", "Core"]}\n', b"OpenSSH_8.6p1, OpenSSL 1.1.1k  FIPS 25 Mar 2021\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for 'final all' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: not matched 'final'\r\ndebug2: match not found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1 (parse only)\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug1: configuration requests final Match pass\r\ndebug2: resolve_canonicalize: hostname 10.1.1.245 is address\r\ndebug1: re-parsing configuration\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for 'final all' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: matched 'final'\r\ndebug2: match found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug3: expanded UserKnownHostsFile '~/.ssh/known_hosts' -> '/root/.ssh/known_hosts'\r\ndebug3: expanded UserKnownHostsFile '~/.ssh/known_hosts2' -> '/root/.ssh/known_hosts2'\r\ndebug1: auto-mux: Trying existing master\r\ndebug2: fd 5 setting O_NONBLOCK\r\ndebug2: mux_client_hello_exchange: master version 4\r\ndebug3: mux_client_forwards: request forwardings: 0 local, 0 remote\r\ndebug3: mux_client_request_session: entering\r\ndebug3: mux_client_request_alive: entering\r\ndebug3: mux_client_request_alive: done pid = 4020\r\ndebug3: mux_client_request_session: session request sent\r\ndebug1: mux_client_request_session: master session id: 2\r\ndebug3: mux_client_read_packet: read header failed: Broken pipe\r\ndebug2: Received exit status from master 0\r\n")
Using module file /usr/lib/python3.9/site-packages/ansible/modules/system/setup.py
<10.1.1.245> PUT /root/.ansible/tmp/ansible-local-40137riosucd/tmpx4a7wah5 TO /root/.ansible/tmp/ansible-tmp-1623297907.7165537-4016-188632554475526/AnsiballZ_setup.py
<10.1.1.245> SSH: ansible.cfg set ssh_args: (-C)(-o)(ControlMaster=auto)(-o)(ControlPersist=60s)
<10.1.1.245> SSH: ANSIBLE_HOST_KEY_CHECKING/host_key_checking disabled: (-o)(StrictHostKeyChecking=no)
<10.1.1.245> SSH: ansible_password/ansible_ssh_password not set: (-o)(KbdInteractiveAuthentication=no)(-o)(PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey)(-o)(PasswordAuthentication=no)
<10.1.1.245> SSH: ANSIBLE_TIMEOUT/timeout set: (-o)(ConnectTimeout=10)
<10.1.1.245> SSH: PlayContext set ssh_common_args: ()
<10.1.1.245> SSH: PlayContext set sftp_extra_args: ()
<10.1.1.245> SSH: found only ControlPersist; added ControlPath: (-o)(ControlPath=/root/.ansible/cp/9c7f71fc83)
<10.1.1.245> SSH: EXEC sftp -b - -vvv -C -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/root/.ansible/cp/9c7f71fc83 '[10.1.1.245]'
<10.1.1.245> (0, b'sftp> put /root/.ansible/tmp/ansible-local-40137riosucd/tmpx4a7wah5 /root/.ansible/tmp/ansible-tmp-1623297907.7165537-4016-188632554475526/AnsiballZ_setup.py\n', b'OpenSSH_8.6p1, OpenSSL 1.1.1k  FIPS 25 Mar 2021\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for \'final all\' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: not matched \'final\'\r\ndebug2: match not found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1 (parse only)\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug1: configuration requests final Match pass\r\ndebug2: resolve_canonicalize: hostname 10.1.1.245 is address\r\ndebug1: re-parsing configuration\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for \'final all\' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: matched \'final\'\r\ndebug2: match found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug3: expanded UserKnownHostsFile \'~/.ssh/known_hosts\' -> \'/root/.ssh/known_hosts\'\r\ndebug3: expanded UserKnownHostsFile \'~/.ssh/known_hosts2\' -> \'/root/.ssh/known_hosts2\'\r\ndebug1: auto-mux: Trying existing master\r\ndebug2: fd 5 setting O_NONBLOCK\r\ndebug2: mux_client_hello_exchange: master version 4\r\ndebug3: mux_client_forwards: request forwardings: 0 local, 0 remote\r\ndebug3: mux_client_request_session: entering\r\ndebug3: mux_client_request_alive: entering\r\ndebug3: mux_client_request_alive: done pid = 4020\r\ndebug3: mux_client_request_session: session request sent\r\ndebug1: mux_client_request_session: master session id: 2\r\ndebug2: Remote version: 3\r\ndebug2: Server supports extension "posix-rename@openssh.com" revision 1\r\ndebug2: Server supports extension "statvfs@openssh.com" revision 2\r\ndebug2: Server supports extension "fstatvfs@openssh.com" revision 2\r\ndebug2: Server supports extension "hardlink@openssh.com" revision 1\r\ndebug2: Server supports extension "fsync@openssh.com" revision 1\r\ndebug3: Sent message fd 3 T:16 I:1\r\ndebug3: SSH_FXP_REALPATH . -> /root size 0\r\ndebug3: Looking up /root/.ansible/tmp/ansible-local-40137riosucd/tmpx4a7wah5\r\ndebug3: Sent message fd 3 T:17 I:2\r\ndebug3: Received stat reply T:101 I:2\r\ndebug1: Couldn\'t stat remote file: No such file or directory\r\ndebug3: Sent message SSH2_FXP_OPEN I:3 P:/root/.ansible/tmp/ansible-tmp-1623297907.7165537-4016-188632554475526/AnsiballZ_setup.py\r\ndebug3: Sent message SSH2_FXP_WRITE I:4 O:0 S:32768\r\ndebug3: SSH2_FXP_STATUS 0\r\ndebug3: In write loop, ack for 4 32768 bytes at 0\r\ndebug3: Sent message SSH2_FXP_WRITE I:5 O:32768 S:32768\r\ndebug3: Sent message SSH2_FXP_WRITE I:6 O:65536 S:32768\r\ndebug3: Sent message SSH2_FXP_WRITE I:7 O:98304 S:32768\r\ndebug3: Sent message SSH2_FXP_WRITE I:8 O:131072 S:32768\r\ndebug3: Sent message SSH2_FXP_WRITE I:9 O:163840 S:32768\r\ndebug3: Sent message SSH2_FXP_WRITE I:10 O:196608 S:32768\r\ndebug3: Sent message SSH2_FXP_WRITE I:11 O:229376 S:32768\r\ndebug3: Sent message SSH2_FXP_WRITE I:12 O:262144 S:3512\r\ndebug3: SSH2_FXP_STATUS 0\r\ndebug3: In write loop, ack for 5 32768 bytes at 32768\r\ndebug3: SSH2_FXP_STATUS 0\r\ndebug3: In write loop, ack for 6 32768 bytes at 65536\r\ndebug3: SSH2_FXP_STATUS 0\r\ndebug3: In write loop, ack for 7 32768 bytes at 98304\r\ndebug3: SSH2_FXP_STATUS 0\r\ndebug3: In write loop, ack for 8 32768 bytes at 131072\r\ndebug3: SSH2_FXP_STATUS 0\r\ndebug3: In write loop, ack for 9 32768 bytes at 163840\r\ndebug3: SSH2_FXP_STATUS 0\r\ndebug3: In write loop, ack for 10 32768 bytes at 196608\r\ndebug3: SSH2_FXP_STATUS 0\r\ndebug3: In write loop, ack for 11 32768 bytes at 229376\r\ndebug3: SSH2_FXP_STATUS 0\r\ndebug3: In write loop, ack for 12 3512 bytes at 262144\r\ndebug3: Sent message SSH2_FXP_CLOSE I:4\r\ndebug3: SSH2_FXP_STATUS 0\r\ndebug3: mux_client_read_packet: read header failed: Broken pipe\r\ndebug2: Received exit status from master 0\r\n')
<10.1.1.245> ESTABLISH SSH CONNECTION FOR USER: None
<10.1.1.245> SSH: ansible.cfg set ssh_args: (-C)(-o)(ControlMaster=auto)(-o)(ControlPersist=60s)
<10.1.1.245> SSH: ANSIBLE_HOST_KEY_CHECKING/host_key_checking disabled: (-o)(StrictHostKeyChecking=no)
<10.1.1.245> SSH: ansible_password/ansible_ssh_password not set: (-o)(KbdInteractiveAuthentication=no)(-o)(PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey)(-o)(PasswordAuthentication=no)
<10.1.1.245> SSH: ANSIBLE_TIMEOUT/timeout set: (-o)(ConnectTimeout=10)
<10.1.1.245> SSH: PlayContext set ssh_common_args: ()
<10.1.1.245> SSH: PlayContext set ssh_extra_args: ()
<10.1.1.245> SSH: found only ControlPersist; added ControlPath: (-o)(ControlPath=/root/.ansible/cp/9c7f71fc83)
<10.1.1.245> SSH: EXEC ssh -vvv -C -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/root/.ansible/cp/9c7f71fc83 10.1.1.245 '/bin/sh -c '"'"'chmod u+x /root/.ansible/tmp/ansible-tmp-1623297907.7165537-4016-188632554475526/ /root/.ansible/tmp/ansible-tmp-1623297907.7165537-4016-188632554475526/AnsiballZ_setup.py && sleep 0'"'"''
<10.1.1.245> (0, b'', b"OpenSSH_8.6p1, OpenSSL 1.1.1k  FIPS 25 Mar 2021\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for 'final all' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: not matched 'final'\r\ndebug2: match not found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1 (parse only)\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug1: configuration requests final Match pass\r\ndebug2: resolve_canonicalize: hostname 10.1.1.245 is address\r\ndebug1: re-parsing configuration\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for 'final all' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: matched 'final'\r\ndebug2: match found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug3: expanded UserKnownHostsFile '~/.ssh/known_hosts' -> '/root/.ssh/known_hosts'\r\ndebug3: expanded UserKnownHostsFile '~/.ssh/known_hosts2' -> '/root/.ssh/known_hosts2'\r\ndebug1: auto-mux: Trying existing master\r\ndebug2: fd 5 setting O_NONBLOCK\r\ndebug2: mux_client_hello_exchange: master version 4\r\ndebug3: mux_client_forwards: request forwardings: 0 local, 0 remote\r\ndebug3: mux_client_request_session: entering\r\ndebug3: mux_client_request_alive: entering\r\ndebug3: mux_client_request_alive: done pid = 4020\r\ndebug3: mux_client_request_session: session request sent\r\ndebug1: mux_client_request_session: master session id: 2\r\ndebug3: mux_client_read_packet: read header failed: Broken pipe\r\ndebug2: Received exit status from master 0\r\n")
<10.1.1.245> ESTABLISH SSH CONNECTION FOR USER: None
<10.1.1.245> SSH: ansible.cfg set ssh_args: (-C)(-o)(ControlMaster=auto)(-o)(ControlPersist=60s)
<10.1.1.245> SSH: ANSIBLE_HOST_KEY_CHECKING/host_key_checking disabled: (-o)(StrictHostKeyChecking=no)
<10.1.1.245> SSH: ansible_password/ansible_ssh_password not set: (-o)(KbdInteractiveAuthentication=no)(-o)(PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey)(-o)(PasswordAuthentication=no)
<10.1.1.245> SSH: ANSIBLE_TIMEOUT/timeout set: (-o)(ConnectTimeout=10)
<10.1.1.245> SSH: PlayContext set ssh_common_args: ()
<10.1.1.245> SSH: PlayContext set ssh_extra_args: ()
<10.1.1.245> SSH: found only ControlPersist; added ControlPath: (-o)(ControlPath=/root/.ansible/cp/9c7f71fc83)
<10.1.1.245> SSH: EXEC ssh -vvv -C -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/root/.ansible/cp/9c7f71fc83 -tt 10.1.1.245 '/bin/sh -c '"'"'/usr/bin/python /root/.ansible/tmp/ansible-tmp-1623297907.7165537-4016-188632554475526/AnsiballZ_setup.py && sleep 0'"'"''
<10.1.1.245> (0, b'\r\n{"invocation": {"module_args": {"filter": "*", "gather_subset": ["all"], "fact_path": "/etc/ansible/facts.d", "gather_timeout": 10}}, "ansible_facts": {"ansible_tmm": {"macaddress": "00:98:76:54:32:10", "features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "on", "rx_all": "off [fixed]", "highdma": "off [fixed]", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "off [requested on]", "rx_udp_tunnel_port_offload": "off [fixed]", "tx_tcp6_segmentation": "off [requested on]", "tx_gso_robust": "off [fixed]", "tx_ipip_segmentation": "off [fixed]", "tx_tcp_mangleid_segmentation": "off", "tx_checksumming": "off", "vlan_challenged": "off [fixed]", "loopback": "off [fixed]", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "off [fixed]", "tx_vlan_stag_hw_insert": "on", "rx_vlan_stag_hw_parse": "off [fixed]", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on", "rx_checksumming": "off [fixed]", "tx_tcp_segmentation": "off [requested on]", "netns_local": "off [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "off [fixed]", "tcp_segmentation_offload": "off", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "off [fixed]", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "off [fixed]", "tx_nocache_copy": "off", "tx_udp_tnl_csum_segmentation": "off [fixed]", "udp_fragmentation_offload": "off [requested on]", "tx_sctp_segmentation": "off [fixed]", "tx_sit_segmentation": "off [fixed]", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "off [requested on]", "tx_fcoe_segmentation": "off [fixed]", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "on", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "off [fixed]"}, "type": "ether", "hw_timestamp_filters": [], "promisc": false, "mtu": 1500, "device": "tmm", "ipv4_secondaries": [{"broadcast": "127.10.0.0", "netmask": "255.255.255.255", "network": "127.10.0.0", "address": "127.10.0.0"}], "timestamping": ["rx_software", "software"], "ipv4": {"broadcast": "127.1.1.255", "netmask": "255.255.255.0", "network": "127.1.1.0", "address": "127.1.1.254"}, "ipv6": [{"scope": "global", "prefix": "64", "address": "fc00:f5::1"}, {"scope": "link", "prefix": "64", "address": "fe80::298:76ff:fe54:3210"}], "active": true, "speed": 10}, "ansible_fibre_channel_wwn": [], "module_setup": true, "ansible_distribution_version": "7.3", "ansible_distribution_file_variety": "RedHat", "ansible_env": {"HISTTIMEFORMAT": "%Y-%m-%d %T ", "REMOTECONSOLE": "/bin/bash", "LESSOPEN": "||/usr/bin/lesspipe.sh %s", "REMOTEROLE": "0", "SSH_CLIENT": "10.1.1.150 59884 22", "SELINUX_USE_CURRENT_RANGE": "", "LOGNAME": "root", "USER": "root", "PATH": "/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin", "HOME": "/root", "SSH_CONNECTION": "10.1.1.150 59884 10.1.1.245 22", "LANG": "en_US", "TERM": "xterm", "SHELL": "/bin/bash", "SHLVL": "2", "BASH_FUNC_hostname()": "() {  echo -e \\"Use the TMOS shell utility to make changes to the system configuration.\\\\nFor more information, see \\\\\\"tmsh help sys global-settings.\\\\\\"\\" 1>&2;\\n return 1\\n}", "XDG_RUNTIME_DIR": "/run/user/0", "REMOTEUSER": "root", "SELINUX_ROLE_REQUESTED": "", "REMOTEROLESTR": "Administrator", "XDG_SESSION_ID": "c6", "_": "/usr/bin/python", "HISTIGNORE": "tmsh*([[:space:]])?(create|modify)*([[:space:]])?(\\\\/)auth*([[:space:]])user*([[:space:]])*([[:print:]])password*([[:print:]])", "LS_COLORS": "rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:", "SSH_TTY": "/dev/pts/0", "TMOUT": "0", "SELINUX_LEVEL_REQUESTED": "", "PWD": "/root", "BASH_FUNC_tzselect()": "() {  echo -e \\"Use the TMOS shell utility to make changes to the system configuration.\\\\nFor more information, see \\\\\\"tmsh help sys ntp.\\\\\\"\\" 1>&2;\\n return 1\\n}", "MAIL": "/var/mail/root", "REMOTEPARTITION": "[All]", "f5cnt": "0"}, "ansible_userspace_bits": "32", "ansible_architecture": "x86_64", "ansible_default_ipv4": {"macaddress": "00:0c:29:a9:c5:e7", "network": "10.1.1.0", "mtu": 1500, "broadcast": "10.1.1.255", "alias": "mgmt", "netmask": "255.255.255.0", "address": "10.1.1.245", "interface": "mgmt", "type": "bridge", "gateway": "10.1.1.1"}, "ansible_swapfree_mb": 999, "ansible_default_ipv6": {}, "ansible_cmdline": {"console": "tty0", "root": "UUID=0a89382f-cfe9-48e9-adfb-abd0555b7cd2", "default_cpu_order": true, "quiet": true, "platform": "Z100", "ro": true, "panic": "1"}, "ansible_machine_id": "da50f3eb726742468e62f8ef2849f6e7", "ansible_userspace_architecture": "i386", "ansible_product_uuid": "564D3D2D-8726-DBA0-05B6-2E2BE5A9C5E7", "ansible_pkg_mgr": "yum", "ansible_distribution": "CentOS", "ansible_iscsi_iqn": "", "ansible_all_ipv6_addresses": ["fe80::20c:29ff:fea9:c5fb", "fe80::1:23ff:fe45:fe", "fe80::20c:29ff:fea9:c5f1", "fc00:f5::1", "fe80::298:76ff:fe54:3210", "fe80::20c:29ff:fea9:c5e7", "fe80::20c:29ff:fea9:c5e7"], "ansible_uptime_seconds": 3498, "ansible_kernel": "3.10.0-862.14.4.el7.ve.x86_64", "ansible_system_capabilities_enforced": "True", "ansible_python": {"executable": "/usr/bin/python", "version": {"micro": 5, "major": 2, "releaselevel": "final", "serial": 0, "minor": 7}, "type": "CPython", "has_sslcontext": true, "version_info": [2, 7, 5, "final", 0]}, "ansible_is_chroot": false, "gather_subset": ["all"], "ansible_user_shell": "/bin/bash", "ansible_product_serial": "VMware-56 4d 3d 2d 87 26 db a0-05 b6 2e 2b e5 a9 c5 e7", "ansible_form_factor": "Other", "ansible_distribution_file_parsed": true, "ansible_fips": false, "ansible_user_id": "root", "ansible_selinux_python_present": true, "ansible_kernel_version": "#1 SMP Thu Jan 28 23:30:49 PST 2021", "ansible_local": {}, "ansible_processor_vcpus": 4, "ansible_processor": ["0", "GenuineIntel", "Intel(R) Core(TM) i7-7820HQ CPU @ 2.90GHz", "1", "GenuineIntel", "Intel(R) Core(TM) i7-7820HQ CPU @ 2.90GHz", "2", "GenuineIntel", "Intel(R) Core(TM) i7-7820HQ CPU @ 2.90GHz", "3", "GenuineIntel", "Intel(R) Core(TM) i7-7820HQ CPU @ 2.90GHz"], "ansible_user_gid": 0, "ansible_system_vendor": "VMware, Inc.", "ansible_swaptotal_mb": 999, "ansible_outside": {"macaddress": "00:0c:29:a9:c5:f1", "features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "on", "rx_all": "off [fixed]", "highdma": "off [fixed]", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "off [requested on]", "rx_udp_tunnel_port_offload": "off [fixed]", "tx_tcp6_segmentation": "off [requested on]", "tx_gso_robust": "off [fixed]", "tx_ipip_segmentation": "off [fixed]", "tx_tcp_mangleid_segmentation": "off", "tx_checksumming": "off", "vlan_challenged": "off [fixed]", "loopback": "off [fixed]", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "off [fixed]", "tx_vlan_stag_hw_insert": "on", "rx_vlan_stag_hw_parse": "off [fixed]", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on", "rx_checksumming": "off [fixed]", "tx_tcp_segmentation": "off [requested on]", "netns_local": "off [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "off [fixed]", "tcp_segmentation_offload": "off", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "off [fixed]", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "off [fixed]", "tx_nocache_copy": "off", "tx_udp_tnl_csum_segmentation": "off [fixed]", "udp_fragmentation_offload": "off [requested on]", "tx_sctp_segmentation": "off [fixed]", "tx_sit_segmentation": "off [fixed]", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "off [requested on]", "tx_fcoe_segmentation": "off [fixed]", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "on", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "off [fixed]"}, "type": "ether", "hw_timestamp_filters": [], "mtu": 1500, "device": "outside", "promisc": false, "timestamping": ["rx_software", "software"], "ipv4": {"broadcast": "10.1.10.255", "netmask": "255.255.255.0", "network": "10.1.10.0", "address": "10.1.10.10"}, "ipv6": [{"scope": "link", "prefix": "64", "address": "fe80::20c:29ff:fea9:c5f1"}], "active": true, "speed": 10}, "ansible_distribution_major_version": "7", "ansible_real_group_id": 0, "ansible_lsb": {}, "ansible_machine": "x86_64", "ansible_user_gecos": "root", "ansible_processor_threads_per_core": 1, "ansible_eth0": {"macaddress": "00:0c:29:a9:c5:e7", "features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "off [fixed]", "rx_all": "off [fixed]", "highdma": "on", "rx_fcs": "off [fixed]", "tx_lockless": "off [fixed]", "tx_tcp_ecn_segmentation": "off [fixed]", "rx_udp_tunnel_port_offload": "off [fixed]", "tx_tcp6_segmentation": "on", "tx_gso_robust": "off [fixed]", "tx_ipip_segmentation": "off [fixed]", "tx_tcp_mangleid_segmentation": "off", "tx_checksumming": "on", "vlan_challenged": "off [fixed]", "loopback": "off [fixed]", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "off [fixed]", "tx_vlan_stag_hw_insert": "off [fixed]", "rx_vlan_stag_hw_parse": "off [fixed]", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off", "tx_scatter_gather": "on", "rx_checksumming": "on", "tx_tcp_segmentation": "on", "netns_local": "off [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "off [fixed]", "tcp_segmentation_offload": "on", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "on", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "off [fixed]", "tx_nocache_copy": "off", "tx_udp_tnl_csum_segmentation": "off [fixed]", "udp_fragmentation_offload": "off [fixed]", "tx_sctp_segmentation": "off [fixed]", "tx_sit_segmentation": "off [fixed]", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "on", "tx_fcoe_segmentation": "off [fixed]", "rx_vlan_filter": "on [fixed]", "tx_vlan_offload": "on", "receive_hashing": "on", "tx_gre_segmentation": "off [fixed]"}, "type": "ether", "pciid": "0000:03:00.0", "module": "vmxnet3", "mtu": 1500, "device": "eth0", "promisc": true, "timestamping": ["rx_software", "software"], "ipv6": [{"scope": "link", "prefix": "64", "address": "fe80::20c:29ff:fea9:c5e7"}], "active": true, "speed": 10000, "hw_timestamp_filters": []}, "ansible_system": "Linux", "ansible_all_ipv4_addresses": ["10.1.20.10", "10.1.10.10", "10.1.1.245"], "ansible_python_version": "2.7.5", "ansible_product_version": "None", "ansible_socks_tunnel": {"macaddress": "42:e8:1a:30:ee:e1", "features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "on", "rx_all": "off [fixed]", "highdma": "off [fixed]", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "off [requested on]", "rx_udp_tunnel_port_offload": "off [fixed]", "tx_tcp6_segmentation": "off [requested on]", "tx_gso_robust": "off [fixed]", "tx_ipip_segmentation": "off [fixed]", "tx_tcp_mangleid_segmentation": "off", "tx_checksumming": "off", "vlan_challenged": "off [fixed]", "loopback": "off [fixed]", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "off [fixed]", "tx_vlan_stag_hw_insert": "on", "rx_vlan_stag_hw_parse": "off [fixed]", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on", "rx_checksumming": "off [fixed]", "tx_tcp_segmentation": "off [requested on]", "netns_local": "off [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "off [fixed]", "tcp_segmentation_offload": "off", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "off [fixed]", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "off [fixed]", "tx_nocache_copy": "off", "tx_udp_tnl_csum_segmentation": "off [fixed]", "udp_fragmentation_offload": "off [requested on]", "tx_sctp_segmentation": "off [fixed]", "tx_sit_segmentation": "off [fixed]", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "off [requested on]", "tx_fcoe_segmentation": "off [fixed]", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "on", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "off [fixed]"}, "hw_timestamp_filters": [], "mtu": 1500, "device": "socks-tunnel", "promisc": false, "timestamping": ["rx_software", "software"], "active": false, "type": "ether"}, "ansible_service_mgr": "systemd", "ansible_memory_mb": {"real": {"total": 16048, "used": 15864, "free": 184}, "swap": {"cached": 0, "total": 999, "free": 999, "used": 0}, "nocache": {"used": 14019, "free": 2029}}, "ansible_user_dir": "/root", "ansible_hostnqn": "", "ansible_real_user_id": 0, "ansible_tmm_bp": {"macaddress": "02:01:23:45:00:fe", "features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "on", "rx_all": "off [fixed]", "highdma": "off [fixed]", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "off [requested on]", "rx_udp_tunnel_port_offload": "off [fixed]", "tx_tcp6_segmentation": "off [requested on]", "tx_gso_robust": "off [fixed]", "tx_ipip_segmentation": "off [fixed]", "tx_tcp_mangleid_segmentation": "off", "tx_checksumming": "off", "vlan_challenged": "off [fixed]", "loopback": "off [fixed]", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "off [fixed]", "tx_vlan_stag_hw_insert": "on", "rx_vlan_stag_hw_parse": "off [fixed]", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on", "rx_checksumming": "off [fixed]", "tx_tcp_segmentation": "off [requested on]", "netns_local": "off [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "off [fixed]", "tcp_segmentation_offload": "off", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "off [fixed]", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "off [fixed]", "tx_nocache_copy": "off", "tx_udp_tnl_csum_segmentation": "off [fixed]", "udp_fragmentation_offload": "off [requested on]", "tx_sctp_segmentation": "off [fixed]", "tx_sit_segmentation": "off [fixed]", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "off [requested on]", "tx_fcoe_segmentation": "off [fixed]", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "on", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "off [fixed]"}, "type": "ether", "hw_timestamp_filters": [], "mtu": 4096, "device": "tmm_bp", "promisc": false, "timestamping": ["rx_software", "software"], "ipv4": {"broadcast": "127.20.255.255", "netmask": "255.255.0.0", "network": "127.20.0.0", "address": "127.20.0.254"}, "ipv6": [{"scope": "link", "prefix": "64", "address": "fe80::1:23ff:fe45:fe"}], "active": true, "speed": 10}, "ansible_virtualization_role": "guest", "ansible_dns": {"nameservers": ["10.1.1.1"], "search": ["localdomain"], "options": {"ndots": "0"}}, "ansible_effective_group_id": 0, "ansible_lo": {"features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "on [fixed]", "rx_all": "off [fixed]", "highdma": "on [fixed]", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "on", "rx_udp_tunnel_port_offload": "off [fixed]", "tx_tcp6_segmentation": "on", "tx_gso_robust": "off [fixed]", "tx_ipip_segmentation": "off [fixed]", "tx_tcp_mangleid_segmentation": "on", "tx_checksumming": "on", "vlan_challenged": "on [fixed]", "loopback": "on [fixed]", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "on [fixed]", "tx_vlan_stag_hw_insert": "off [fixed]", "rx_vlan_stag_hw_parse": "off [fixed]", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on [fixed]", "rx_checksumming": "on [fixed]", "tx_tcp_segmentation": "on", "netns_local": "on [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "off [fixed]", "tcp_segmentation_offload": "on", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "off [fixed]", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "off [fixed]", "tx_nocache_copy": "off [fixed]", "tx_udp_tnl_csum_segmentation": "off [fixed]", "udp_fragmentation_offload": "on", "tx_sctp_segmentation": "on", "tx_sit_segmentation": "off [fixed]", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "on [fixed]", "tx_fcoe_segmentation": "off [fixed]", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "off [fixed]", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "off [fixed]"}, "hw_timestamp_filters": [], "mtu": 65536, "device": "lo", "promisc": false, "timestamping": ["rx_software", "software"], "ipv4": {"broadcast": "", "netmask": "255.255.255.0", "network": "127.0.0.0", "address": "127.0.0.1"}, "ipv6": [{"scope": "host", "prefix": "128", "address": "::1"}], "active": true, "type": "loopback"}, "ansible_memtotal_mb": 16048, "ansible_device_links": {"masters": {"sda3": ["dm-0", "dm-1", "dm-10", "dm-11", "dm-12", "dm-2", "dm-3", "dm-4", "dm-5", "dm-6", "dm-7", "dm-8", "dm-9"]}, "labels": {"loop0": ["CDROM"], "dm-10": ["set.2.\\\\x2fusr"], "dm-11": ["set.2.\\\\x2fconfig"], "dm-12": ["set.2.\\\\x2fvar"], "sda1": ["DAT.BOOT.1"], "dm-8": ["set.1.\\\\x2fvar"], "dm-9": ["set.2.\\\\x2f"], "dm-6": ["set.1.\\\\x2fusr"], "dm-7": ["set.1.\\\\x2fconfig"], "dm-5": ["set.1.\\\\x2f"], "dm-2": ["dat.appdata"], "dm-3": ["dat.log"], "dm-0": ["dat.maint.1"], "dm-1": ["dat.share"]}, "ids": {"dm-10": ["dm-name-vg--db--vda-set.2._usr", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dl5513Z3nA6O5gx0tcO1AXfgotFFZIibaH"], "dm-11": ["dm-name-vg--db--vda-set.2._config", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dl1iu4xW6TLS1rlhNcJRoDsoDEIEt28ja4"], "dm-12": ["dm-name-vg--db--vda-set.2._var", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dl8EBmHKqGOvE0eCu6FM4hOuW3XEfyoODI"], "sda3": ["lvm-pv-uuid-i1GHQu-QpSm-Hf8i-4lPx-lmzK-AQYs-7ulmRW"], "dm-8": ["dm-name-vg--db--vda-set.1._var", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlrUvwjOrn7bfKeG2mnFresLn1EwEadvdj"], "dm-9": ["dm-name-vg--db--vda-set.2.root", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dl2zO1sWkXvzSK3H6d3y5tdxCwInAZIywD"], "dm-6": ["dm-name-vg--db--vda-set.1._usr", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dliGjrWQ0Kfp10jpdaCMSyJeqCSyA3lX26"], "dm-7": ["dm-name-vg--db--vda-set.1._config", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlXA5zDq71B1uvP8alcFPCHvkJSeq4yQOo"], "dm-4": ["dm-name-vg--db--vda-dat.swapvol", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlqcYScLHoAoh4pT2Wo6SBFb8hDBsgpDfG"], "dm-5": ["dm-name-vg--db--vda-set.1.root", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlo5pePwv6TFTk5jdV7nOU04zaLCQYm7a5"], "dm-2": ["dm-name-vg--db--vda-dat.appdata", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlY0TUVmOkWmXuFC90qEDiOdjipy8fQuYN"], "dm-3": ["dm-name-vg--db--vda-dat.log", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlg9Y0tkXXXBr91lYVeTRVAALfv1ByvfPe"], "dm-0": ["dm-name-vg--db--vda-dat.maint.1", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlbEjqPlE0E9H3IGAN5QRwUbBefZ2uW7zE"], "dm-1": ["dm-name-vg--db--vda-dat.share", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlLapA4h7u09rQht9xIo4g8vQnzFhlAfAM"]}, "uuids": {"loop0": ["2021-01-11-01-08-32-00"], "dm-10": ["82b59d9a-f900-48f5-8841-c46f4b29b74c"], "dm-11": ["7d9a46ce-aad0-4211-a317-2d76c710c970"], "dm-12": ["24baee18-ed7b-44c2-a025-6007b23b6aa9"], "sda1": ["8F39-7762"], "sda2": ["008b4bb3-3a00-4e71-8936-00a1b7440a48"], "dm-8": ["1746fcf7-cbfb-4f0c-8763-6fa4dd951e0e"], "dm-9": ["0a89382f-cfe9-48e9-adfb-abd0555b7cd2"], "dm-6": ["3811c72f-35c2-4177-8a83-921fd0b88525"], "dm-7": ["e10f2094-3a4e-4172-a5a4-ab7289d3f86a"], "dm-4": ["32f81d03-a34d-4388-a228-80175370e95f"], "dm-5": ["67f977a2-2a29-43c9-904f-bb0cdfb1c195"], "dm-2": ["b27a8137-f3ba-469c-90b7-90a3f0228ae6"], "dm-3": ["9678a162-3e98-4fc2-ae0b-bc3d617ace2d"], "dm-0": ["d4ab1cf3-5ee7-4279-8c97-ade47b14d12a"], "dm-1": ["726ab41b-20bf-4e28-8452-a555e43f90d2"]}}, "ansible_apparmor": {"status": "disabled"}, "ansible_mgmt": {"macaddress": "00:0c:29:a9:c5:e7", "features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "off [requested on]", "rx_all": "off [fixed]", "highdma": "on", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "on", "rx_udp_tunnel_port_offload": "off [fixed]", "tx_tcp6_segmentation": "on", "tx_gso_robust": "off [requested on]", "tx_ipip_segmentation": "on", "tx_tcp_mangleid_segmentation": "on", "tx_checksumming": "on", "vlan_challenged": "off [fixed]", "loopback": "off [fixed]", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "off [fixed]", "tx_vlan_stag_hw_insert": "on", "rx_vlan_stag_hw_parse": "off [fixed]", "tx_gso_partial": "on", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on", "rx_checksumming": "off [fixed]", "tx_tcp_segmentation": "on", "netns_local": "on [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "on", "tcp_segmentation_offload": "on", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "off [fixed]", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "on", "tx_nocache_copy": "off", "tx_udp_tnl_csum_segmentation": "on", "udp_fragmentation_offload": "off [requested on]", "tx_sctp_segmentation": "off [requested on]", "tx_sit_segmentation": "on", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "on", "tx_fcoe_segmentation": "off [requested on]", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "on", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "on"}, "interfaces": ["eth0"], "id": "8000.000c29a9c5e7", "mtu": 1500, "device": "mgmt", "promisc": false, "stp": false, "ipv4": {"broadcast": "10.1.1.255", "netmask": "255.255.255.0", "network": "10.1.1.0", "address": "10.1.1.245"}, "ipv6": [{"scope": "link", "prefix": "64", "address": "fe80::20c:29ff:fea9:c5e7"}], "active": true, "timestamping": ["rx_software", "software"], "type": "bridge", "hw_timestamp_filters": []}, "ansible_lo_1": {"ipv4": {"broadcast": "127.2.0.255", "netmask": "255.255.255.0", "network": "127.2.0.0", "address": "127.2.0.2"}}, "ansible_bios_date": "02/27/2020", "ansible_memfree_mb": 184, "ansible_inside": {"macaddress": "00:0c:29:a9:c5:fb", "features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "on", "rx_all": "off [fixed]", "highdma": "off [fixed]", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "off [requested on]", "rx_udp_tunnel_port_offload": "off [fixed]", "tx_tcp6_segmentation": "off [requested on]", "tx_gso_robust": "off [fixed]", "tx_ipip_segmentation": "off [fixed]", "tx_tcp_mangleid_segmentation": "off", "tx_checksumming": "off", "vlan_challenged": "off [fixed]", "loopback": "off [fixed]", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "off [fixed]", "tx_vlan_stag_hw_insert": "on", "rx_vlan_stag_hw_parse": "off [fixed]", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on", "rx_checksumming": "off [fixed]", "tx_tcp_segmentation": "off [requested on]", "netns_local": "off [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "off [fixed]", "tcp_segmentation_offload": "off", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "off [fixed]", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "off [fixed]", "tx_nocache_copy": "off", "tx_udp_tnl_csum_segmentation": "off [fixed]", "udp_fragmentation_offload": "off [requested on]", "tx_sctp_segmentation": "off [fixed]", "tx_sit_segmentation": "off [fixed]", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "off [requested on]", "tx_fcoe_segmentation": "off [fixed]", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "on", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "off [fixed]"}, "type": "ether", "hw_timestamp_filters": [], "mtu": 1500, "device": "inside", "promisc": false, "timestamping": ["rx_software", "software"], "ipv4": {"broadcast": "10.1.20.255", "netmask": "255.255.255.0", "network": "10.1.20.0", "address": "10.1.20.10"}, "ipv6": [{"scope": "link", "prefix": "64", "address": "fe80::20c:29ff:fea9:c5fb"}], "active": true, "speed": 10}, "ansible_processor_count": 2, "ansible_hostname": "foo", "ansible_interfaces": ["socks-tunnel", "lo", "inside", "lo_1", "tmm_bp", "outside", "mgmt", "http-tunnel", "tmm", "eth0"], "ansible_selinux": {"status": "enabled", "policyvers": 31, "type": "targeted", "mode": "enforcing", "config_mode": "enforcing"}, "ansible_fqdn": "localhost.localdomain", "ansible_mounts": [{"block_used": 1456650, "uuid": "726ab41b-20bf-4e28-8452-a555e43f90d2", "size_total": 15719186432, "block_total": 3837692, "mount": "/shared", "block_available": 2381042, "size_available": 9752748032, "fstype": "ext4", "inode_total": 983040, "options": "rw,seclabel,noatime,data=ordered", "device": "/dev/mapper/vg--db--vda-dat.share", "inode_used": 290846, "block_size": 4096, "inode_available": 692194}, {"block_used": 361065, "uuid": "24baee18-ed7b-44c2-a025-6007b23b6aa9", "size_total": 4621762560, "block_total": 1128360, "mount": "/var/dnscached/lib", "block_available": 767295, "size_available": 3142840320, "fstype": "ext4", "inode_total": 294912, "options": "rw,seclabel,noatime,discard,data=ordered,bind", "device": "/dev/mapper/vg--db--vda-set.2._var", "inode_used": 25801, "block_size": 4096, "inode_available": 269111}, {"block_used": 361065, "uuid": "24baee18-ed7b-44c2-a025-6007b23b6aa9", "size_total": 4621762560, "block_total": 1128360, "mount": "/var", "block_available": 767295, "size_available": 3142840320, "fstype": "ext4", "inode_total": 294912, "options": "rw,seclabel,noexec,noatime,discard,data=ordered", "device": "/dev/mapper/vg--db--vda-set.2._var", "inode_used": 25801, "block_size": 4096, "inode_available": 269111}, {"block_used": 1143947, "uuid": "82b59d9a-f900-48f5-8841-c46f4b29b74c", "size_total": 5311127552, "block_total": 1296662, "mount": "/usr", "block_available": 152715, "size_available": 625520640, "fstype": "ext4", "inode_total": 338016, "options": "ro,seclabel,noatime,discard,data=ordered", "device": "/dev/mapper/vg--db--vda-set.2._usr", "inode_used": 93417, "block_size": 4096, "inode_available": 244599}, {"block_used": 674483, "uuid": "b27a8137-f3ba-469c-90b7-90a3f0228ae6", "size_total": 26335080448, "block_total": 6429463, "mount": "/appdata", "block_available": 5754980, "size_available": 23572398080, "fstype": "ext3", "inode_total": 1635200, "options": "rw,seclabel,noatime,errors=continue,user_xattr,acl,barrier=0,data=ordered", "device": "/dev/mapper/vg--db--vda-dat.appdata", "inode_used": 6748, "block_size": 4096, "inode_available": 1628452}, {"block_used": 108527, "uuid": "0a89382f-cfe9-48e9-adfb-abd0555b7cd2", "size_total": 438425600, "block_total": 428150, "mount": "/", "block_available": 319623, "size_available": 327293952, "fstype": "ext4", "inode_total": 112640, "options": "rw,seclabel,noatime,discard,data=ordered", "device": "/dev/mapper/vg--db--vda-set.2.root", "inode_used": 4236, "block_size": 1024, "inode_available": 108404}, {"block_used": 107522, "uuid": "9678a162-3e98-4fc2-ae0b-bc3d617ace2d", "size_total": 3029221376, "block_total": 739556, "mount": "/var/log", "block_available": 632034, "size_available": 2588811264, "fstype": "ext4", "inode_total": 192000, "options": "rw,seclabel,nosuid,nodev,noexec,noatime,data=ordered", "device": "/dev/mapper/vg--db--vda-dat.log", "inode_used": 505, "block_size": 4096, "inode_available": 191495}, {"block_used": 116965, "uuid": "7d9a46ce-aad0-4211-a317-2d76c710c970", "size_total": 2224111616, "block_total": 542996, "mount": "/config", "block_available": 426031, "size_available": 1745022976, "fstype": "ext4", "inode_total": 142272, "options": "rw,seclabel,noatime,discard,data=ordered", "device": "/dev/mapper/vg--db--vda-set.2._config", "inode_used": 909, "block_size": 4096, "inode_available": 141363}, {"block_used": 361065, "uuid": "24baee18-ed7b-44c2-a025-6007b23b6aa9", "size_total": 4621762560, "block_total": 1128360, "mount": "/var/named/lib", "block_available": 767295, "size_available": 3142840320, "fstype": "ext4", "inode_total": 294912, "options": "rw,seclabel,noatime,discard,data=ordered,bind", "device": "/dev/mapper/vg--db--vda-set.2._var", "inode_used": 25801, "block_size": 4096, "inode_available": 269111}, {"block_used": 152295, "uuid": "2021-01-11-01-08-32-00", "size_total": 311900160, "block_total": 152295, "mount": "/var/apm/mount/apmclients-7185.2021.111.757-4818.0.iso", "block_available": 0, "size_available": 0, "fstype": "iso9660", "inode_total": 0, "options": "ro,context=system_u:object_r:f5sam_content_t:s0,relatime", "device": "/dev/loop0", "inode_used": 0, "block_size": 2048, "inode_available": 0}], "ansible_nodename": "foo.org", "ansible_http_tunnel": {"macaddress": "ba:a3:b1:b5:1a:6d", "features": {"tx_checksum_ipv4": "off [fixed]", "generic_receive_offload": "on", "tx_checksum_ipv6": "off [fixed]", "tx_scatter_gather_fraglist": "on", "rx_all": "off [fixed]", "highdma": "off [fixed]", "rx_fcs": "off [fixed]", "tx_lockless": "on [fixed]", "tx_tcp_ecn_segmentation": "off [requested on]", "rx_udp_tunnel_port_offload": "off [fixed]", "tx_tcp6_segmentation": "off [requested on]", "tx_gso_robust": "off [fixed]", "tx_ipip_segmentation": "off [fixed]", "tx_tcp_mangleid_segmentation": "off", "tx_checksumming": "off", "vlan_challenged": "off [fixed]", "loopback": "off [fixed]", "fcoe_mtu": "off [fixed]", "scatter_gather": "on", "tx_checksum_sctp": "off [fixed]", "tx_vlan_stag_hw_insert": "on", "rx_vlan_stag_hw_parse": "off [fixed]", "tx_gso_partial": "off [fixed]", "rx_vlan_stag_filter": "off [fixed]", "large_receive_offload": "off [fixed]", "tx_scatter_gather": "on", "rx_checksumming": "off [fixed]", "tx_tcp_segmentation": "off [requested on]", "netns_local": "off [fixed]", "busy_poll": "off [fixed]", "generic_segmentation_offload": "on", "tx_udp_tnl_segmentation": "off [fixed]", "tcp_segmentation_offload": "off", "l2_fwd_offload": "off [fixed]", "rx_vlan_offload": "off [fixed]", "ntuple_filters": "off [fixed]", "tx_gre_csum_segmentation": "off [fixed]", "tx_nocache_copy": "off", "tx_udp_tnl_csum_segmentation": "off [fixed]", "udp_fragmentation_offload": "off [requested on]", "tx_sctp_segmentation": "off [fixed]", "tx_sit_segmentation": "off [fixed]", "tx_checksum_fcoe_crc": "off [fixed]", "hw_tc_offload": "off [fixed]", "tx_checksum_ip_generic": "off [requested on]", "tx_fcoe_segmentation": "off [fixed]", "rx_vlan_filter": "off [fixed]", "tx_vlan_offload": "on", "receive_hashing": "off [fixed]", "tx_gre_segmentation": "off [fixed]"}, "hw_timestamp_filters": [], "mtu": 1500, "device": "http-tunnel", "promisc": false, "timestamping": ["rx_software", "software"], "active": false, "type": "ether"}, "ansible_lvm": {"pvs": {"/dev/sda3": {"free_g": "8.67", "size_g": "75.79", "vg": "vg-db-vda"}}, "lvs": {"dat.share": {"size_g": "15.00", "vg": "vg-db-vda"}, "dat.swapvol": {"size_g": "0.98", "vg": "vg-db-vda"}, "dat.maint.1": {"size_g": "0.29", "vg": "vg-db-vda"}, "set.1.root": {"size_g": "0.43", "vg": "vg-db-vda"}, "set.1._usr": {"size_g": "5.15", "vg": "vg-db-vda"}, "set.1._var": {"size_g": "3.00", "vg": "vg-db-vda"}, "set.1._config": {"size_g": "2.17", "vg": "vg-db-vda"}, "set.2._var": {"size_g": "4.50", "vg": "vg-db-vda"}, "dat.appdata": {"size_g": "24.92", "vg": "vg-db-vda"}, "set.2.root": {"size_g": "0.43", "vg": "vg-db-vda"}, "set.2._config": {"size_g": "2.17", "vg": "vg-db-vda"}, "dat.log": {"size_g": "2.93", "vg": "vg-db-vda"}, "set.2._usr": {"size_g": "5.15", "vg": "vg-db-vda"}}, "vgs": {"vg-db-vda": {"free_g": "8.67", "size_g": "75.79", "num_lvs": "13", "num_pvs": "1"}}}, "ansible_domain": "localdomain", "ansible_distribution_file_path": "/etc/redhat-release", "ansible_virtualization_type": "VMware", "ansible_processor_cores": 2, "ansible_bios_version": "6.00", "ansible_date_time": {"weekday_number": "5", "iso8601_basic_short": "20210611T010506", "tz": "AEST", "weeknumber": "23", "hour": "01", "year": "2021", "minute": "05", "tz_offset": "+1000", "month": "06", "epoch": "1623337506", "iso8601_micro": "2021-06-10T15:05:06.285205Z", "weekday": "Friday", "time": "01:05:06", "date": "2021-06-11", "iso8601": "2021-06-10T15:05:06Z", "day": "11", "iso8601_basic": "20210611T010506285205", "second": "06"}, "ansible_distribution_release": "Core", "ansible_os_family": "RedHat", "ansible_effective_user_id": 0, "ansible_product_name": "VMware Virtual Platform", "ansible_devices": {"dm-5": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "901120", "links": {"masters": [], "labels": ["set.1.\\\\x2f"], "ids": ["dm-name-vg--db--vda-set.1.root", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlo5pePwv6TFTk5jdV7nOU04zaLCQYm7a5"], "uuids": ["67f977a2-2a29-43c9-904f-bb0cdfb1c195"]}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "440.00 MB"}, "dm-10": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "10805248", "links": {"masters": [], "labels": ["set.2.\\\\x2fusr"], "ids": ["dm-name-vg--db--vda-set.2._usr", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dl5513Z3nA6O5gx0tcO1AXfgotFFZIibaH"], "uuids": ["82b59d9a-f900-48f5-8841-c46f4b29b74c"]}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "5.15 GB"}, "dm-11": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "4546560", "links": {"masters": [], "labels": ["set.2.\\\\x2fconfig"], "ids": ["dm-name-vg--db--vda-set.2._config", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dl1iu4xW6TLS1rlhNcJRoDsoDEIEt28ja4"], "uuids": ["7d9a46ce-aad0-4211-a317-2d76c710c970"]}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "2.17 GB"}, "dm-12": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "9437184", "links": {"masters": [], "labels": ["set.2.\\\\x2fvar"], "ids": ["dm-name-vg--db--vda-set.2._var", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dl8EBmHKqGOvE0eCu6FM4hOuW3XEfyoODI"], "uuids": ["24baee18-ed7b-44c2-a025-6007b23b6aa9"]}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "4.50 GB"}, "dm-3": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "6144000", "links": {"masters": [], "labels": ["dat.log"], "ids": ["dm-name-vg--db--vda-dat.log", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlg9Y0tkXXXBr91lYVeTRVAALfv1ByvfPe"], "uuids": ["9678a162-3e98-4fc2-ae0b-bc3d617ace2d"]}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "2.93 GB"}, "sda": {"scheduler_mode": "deadline", "rotational": "1", "vendor": "VMware,", "sectors": "159383552", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "SCSI storage controller: LSI Logic / Symbios Logic 53c1030 PCI-X Fusion-MPT Dual Ultra320 SCSI (rev 01)", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": "VMware Virtual S", "partitions": {"sda2": {"sectorsize": 512, "uuid": "008b4bb3-3a00-4e71-8936-00a1b7440a48", "links": {"masters": [], "labels": [], "ids": [], "uuids": ["008b4bb3-3a00-4e71-8936-00a1b7440a48"]}, "sectors": "32768", "start": "409600", "holders": [], "size": "16.00 MB"}, "sda3": {"sectorsize": 512, "uuid": null, "links": {"masters": ["dm-0", "dm-1", "dm-10", "dm-11", "dm-12", "dm-2", "dm-3", "dm-4", "dm-5", "dm-6", "dm-7", "dm-8", "dm-9"], "labels": [], "ids": ["lvm-pv-uuid-i1GHQu-QpSm-Hf8i-4lPx-lmzK-AQYs-7ulmRW"], "uuids": []}, "sectors": "158940176", "start": "442368", "holders": ["vg--db--vda-dat.maint.1", "vg--db--vda-dat.share", "vg--db--vda-dat.appdata", "vg--db--vda-dat.log", "vg--db--vda-dat.swapvol", "vg--db--vda-set.1.root", "vg--db--vda-set.1._usr", "vg--db--vda-set.1._config", "vg--db--vda-set.1._var", "vg--db--vda-set.2.root", "vg--db--vda-set.2._usr", "vg--db--vda-set.2._config", "vg--db--vda-set.2._var"], "size": "75.79 GB"}, "sda1": {"sectorsize": 512, "uuid": "8F39-7762", "links": {"masters": [], "labels": ["DAT.BOOT.1"], "ids": [], "uuids": ["8F39-7762"]}, "sectors": "409599", "start": "1", "holders": [], "size": "200.00 MB"}}, "holders": [], "size": "76.00 GB"}, "dm-8": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "6291456", "links": {"masters": [], "labels": ["set.1.\\\\x2fvar"], "ids": ["dm-name-vg--db--vda-set.1._var", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlrUvwjOrn7bfKeG2mnFresLn1EwEadvdj"], "uuids": ["1746fcf7-cbfb-4f0c-8763-6fa4dd951e0e"]}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "3.00 GB"}, "dm-9": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "901120", "links": {"masters": [], "labels": ["set.2.\\\\x2f"], "ids": ["dm-name-vg--db--vda-set.2.root", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dl2zO1sWkXvzSK3H6d3y5tdxCwInAZIywD"], "uuids": ["0a89382f-cfe9-48e9-adfb-abd0555b7cd2"]}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "440.00 MB"}, "dm-6": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "10805248", "links": {"masters": [], "labels": ["set.1.\\\\x2fusr"], "ids": ["dm-name-vg--db--vda-set.1._usr", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dliGjrWQ0Kfp10jpdaCMSyJeqCSyA3lX26"], "uuids": ["3811c72f-35c2-4177-8a83-921fd0b88525"]}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "5.15 GB"}, "dm-7": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "4546560", "links": {"masters": [], "labels": ["set.1.\\\\x2fconfig"], "ids": ["dm-name-vg--db--vda-set.1._config", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlXA5zDq71B1uvP8alcFPCHvkJSeq4yQOo"], "uuids": ["e10f2094-3a4e-4172-a5a4-ab7289d3f86a"]}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "2.17 GB"}, "loop1": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "0", "links": {"masters": [], "labels": [], "ids": [], "uuids": []}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "4096", "model": null, "partitions": {}, "holders": [], "size": "0.00 Bytes"}, "loop0": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "609180", "links": {"masters": [], "labels": ["CDROM"], "ids": [], "uuids": ["2021-01-11-01-08-32-00"]}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "4096", "model": null, "partitions": {}, "holders": [], "size": "297.45 MB"}, "dm-2": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "52256768", "links": {"masters": [], "labels": ["dat.appdata"], "ids": ["dm-name-vg--db--vda-dat.appdata", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlY0TUVmOkWmXuFC90qEDiOdjipy8fQuYN"], "uuids": ["b27a8137-f3ba-469c-90b7-90a3f0228ae6"]}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "24.92 GB"}, "dm-4": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "2048000", "links": {"masters": [], "labels": [], "ids": ["dm-name-vg--db--vda-dat.swapvol", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlqcYScLHoAoh4pT2Wo6SBFb8hDBsgpDfG"], "uuids": ["32f81d03-a34d-4388-a228-80175370e95f"]}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "1000.00 MB"}, "dm-0": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "614400", "links": {"masters": [], "labels": ["dat.maint.1"], "ids": ["dm-name-vg--db--vda-dat.maint.1", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlbEjqPlE0E9H3IGAN5QRwUbBefZ2uW7zE"], "uuids": ["d4ab1cf3-5ee7-4279-8c97-ade47b14d12a"]}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "300.00 MB"}, "dm-1": {"scheduler_mode": "", "rotational": "1", "vendor": null, "sectors": "31457280", "links": {"masters": [], "labels": ["dat.share"], "ids": ["dm-name-vg--db--vda-dat.share", "dm-uuid-LVM-Bb1HNWmXHOCx23JkFysbRYuqjc8E76dlLapA4h7u09rQht9xIo4g8vQnzFhlAfAM"], "uuids": ["726ab41b-20bf-4e28-8452-a555e43f90d2"]}, "sas_device_handle": null, "sas_address": null, "virtual": 1, "host": "", "sectorsize": "512", "removable": "0", "support_discard": "0", "model": null, "partitions": {}, "holders": [], "size": "15.00 GB"}}, "ansible_user_uid": 0, "ansible_proc_cmdline": {"console": ["ttyS0", "tty0"], "root": "UUID=0a89382f-cfe9-48e9-adfb-abd0555b7cd2", "default_cpu_order": true, "quiet": true, "platform": "Z100", "ro": true, "panic": "1"}, "ansible_system_capabilities": ["cap_chown", "cap_dac_override", "cap_dac_read_search", "cap_fowner", "cap_fsetid", "cap_kill", "cap_setgid", "cap_setuid", "cap_setpcap", "cap_linux_immutable", "cap_net_bind_service", "cap_net_broadcast", "cap_net_admin", "cap_net_raw", "cap_ipc_lock", "cap_ipc_owner", "cap_sys_module", "cap_sys_rawio", "cap_sys_chroot", "cap_sys_ptrace", "cap_sys_pacct", "cap_sys_admin", "cap_sys_boot", "cap_sys_nice", "cap_sys_resource", "cap_sys_time", "cap_sys_tty_config", "cap_mknod", "cap_lease", "cap_audit_write", "cap_audit_control", "cap_setfcap", "cap_mac_override", "cap_mac_admin", "cap_syslog", "35", "36+ep"]}}\r\n', b"OpenSSH_8.6p1, OpenSSL 1.1.1k  FIPS 25 Mar 2021\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for 'final all' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: not matched 'final'\r\ndebug2: match not found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1 (parse only)\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug1: configuration requests final Match pass\r\ndebug2: resolve_canonicalize: hostname 10.1.1.245 is address\r\ndebug1: re-parsing configuration\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for 'final all' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: matched 'final'\r\ndebug2: match found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug3: expanded UserKnownHostsFile '~/.ssh/known_hosts' -> '/root/.ssh/known_hosts'\r\ndebug3: expanded UserKnownHostsFile '~/.ssh/known_hosts2' -> '/root/.ssh/known_hosts2'\r\ndebug1: auto-mux: Trying existing master\r\ndebug2: fd 5 setting O_NONBLOCK\r\ndebug2: mux_client_hello_exchange: master version 4\r\ndebug3: mux_client_forwards: request forwardings: 0 local, 0 remote\r\ndebug3: mux_client_request_session: entering\r\ndebug3: mux_client_request_alive: entering\r\ndebug3: mux_client_request_alive: done pid = 4020\r\ndebug3: mux_client_request_session: session request sent\r\ndebug1: mux_client_request_session: master session id: 2\r\ndebug3: mux_client_read_packet: read header failed: Broken pipe\r\ndebug2: Received exit status from master 0\r\nShared connection to 10.1.1.245 closed.\r\n")
<10.1.1.245> ESTABLISH SSH CONNECTION FOR USER: None
<10.1.1.245> SSH: ansible.cfg set ssh_args: (-C)(-o)(ControlMaster=auto)(-o)(ControlPersist=60s)
<10.1.1.245> SSH: ANSIBLE_HOST_KEY_CHECKING/host_key_checking disabled: (-o)(StrictHostKeyChecking=no)
<10.1.1.245> SSH: ansible_password/ansible_ssh_password not set: (-o)(KbdInteractiveAuthentication=no)(-o)(PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey)(-o)(PasswordAuthentication=no)
<10.1.1.245> SSH: ANSIBLE_TIMEOUT/timeout set: (-o)(ConnectTimeout=10)
<10.1.1.245> SSH: PlayContext set ssh_common_args: ()
<10.1.1.245> SSH: PlayContext set ssh_extra_args: ()
<10.1.1.245> SSH: found only ControlPersist; added ControlPath: (-o)(ControlPath=/root/.ansible/cp/9c7f71fc83)
<10.1.1.245> SSH: EXEC ssh -vvv -C -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=10 -o ControlPath=/root/.ansible/cp/9c7f71fc83 10.1.1.245 '/bin/sh -c '"'"'rm -f -r /root/.ansible/tmp/ansible-tmp-1623297907.7165537-4016-188632554475526/ > /dev/null 2>&1 && sleep 0'"'"''
<10.1.1.245> (0, b'', b"OpenSSH_8.6p1, OpenSSL 1.1.1k  FIPS 25 Mar 2021\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for 'final all' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: not matched 'final'\r\ndebug2: match not found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1 (parse only)\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug1: configuration requests final Match pass\r\ndebug2: resolve_canonicalize: hostname 10.1.1.245 is address\r\ndebug1: re-parsing configuration\r\ndebug1: Reading configuration data /etc/ssh/ssh_config\r\ndebug3: /etc/ssh/ssh_config line 55: Including file /etc/ssh/ssh_config.d/50-redhat.conf depth 0\r\ndebug1: Reading configuration data /etc/ssh/ssh_config.d/50-redhat.conf\r\ndebug2: checking match for 'final all' host 10.1.1.245 originally 10.1.1.245\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 3: matched 'final'\r\ndebug2: match found\r\ndebug3: /etc/ssh/ssh_config.d/50-redhat.conf line 5: Including file /etc/crypto-policies/back-ends/openssh.config depth 1\r\ndebug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config\r\ndebug3: gss kex names ok: [gss-curve25519-sha256-,gss-nistp256-sha256-,gss-group14-sha256-,gss-group16-sha512-]\r\ndebug3: kex names ok: [curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512]\r\ndebug3: expanded UserKnownHostsFile '~/.ssh/known_hosts' -> '/root/.ssh/known_hosts'\r\ndebug3: expanded UserKnownHostsFile '~/.ssh/known_hosts2' -> '/root/.ssh/known_hosts2'\r\ndebug1: auto-mux: Trying existing master\r\ndebug2: fd 5 setting O_NONBLOCK\r\ndebug2: mux_client_hello_exchange: master version 4\r\ndebug3: mux_client_forwards: request forwardings: 0 local, 0 remote\r\ndebug3: mux_client_request_session: entering\r\ndebug3: mux_client_request_alive: entering\r\ndebug3: mux_client_request_alive: done pid = 4020\r\ndebug3: mux_client_request_session: session request sent\r\ndebug1: mux_client_request_session: master session id: 2\r\ndebug3: mux_client_read_packet: read header failed: Broken pipe\r\ndebug2: Received exit status from master 0\r\n")
ok: [10.1.1.245]
META: ran handlers

TASK [get device facts] ********************************************************************************************************************************
task path: /root/ansible/f5-facts.yml:12
<localhost> Using network group action f5networks.f5_modules.bigip for f5networks.f5_modules.bigip_device_info
<localhost> connection transport is rest
<localhost> ANSIBLE_NETWORK_IMPORT_MODULES: disabled
<localhost> ANSIBLE_NETWORK_IMPORT_MODULES: module execution time may be extended
<localhost> ESTABLISH LOCAL CONNECTION FOR USER: root
<localhost> EXEC /bin/sh -c 'echo ~root && sleep 0'
<localhost> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /root/.ansible/tmp `"&& mkdir "` echo /root/.ansible/tmp/ansible-tmp-1623297909.581751-4030-72597246055844 `" && echo ansible-tmp-1623297909.581751-4030-72597246055844="` echo /root/.ansible/tmp/ansible-tmp-1623297909.581751-4030-72597246055844 `" ) && sleep 0'
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/basic.py
Using module_utils file ansible_collections/f5networks/f5_modules/plugins/module_utils
Using module_utils file ansible_collections/f5networks/f5_modules/plugins/module_utils/ipaddress
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/parsing/__init__.py
Using module_utils file ansible_collections/f5networks/f5_modules/plugins/module_utils/common
Using module_utils file ansible_collections/f5networks
Using module_utils file ansible_collections/f5networks/f5_modules
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/parsing/convert_bool.py
Using module_utils file ansible_collections/f5networks/f5_modules/plugins/module_utils/icontrol
Using module_utils file ansible_collections/f5networks/f5_modules/plugins/module_utils/bigip
Using module_utils file ansible_collections/f5networks/f5_modules/plugins/module_utils/teem
Using module_utils file ansible_collections
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/six/__init__.py
Using module_utils file ansible_collections/f5networks/f5_modules/plugins/module_utils/urls
Using module_utils file ansible_collections/f5networks/f5_modules/plugins
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/text/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/sys_info.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/file.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/_text.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/_json_compat.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/process.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/_utils.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/pycompat24.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/compat/selectors.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/compat/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/text/converters.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/validation.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/parameters.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/_collections_compat.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/text/formatters.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/distro/__init__.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/distro/_distro.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/compat/_selectors2.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/collections.py
Using module_utils file ansible_collections/ansible/netcommon/plugins/module_utils/network
Using module_utils file ansible_collections/ansible/netcommon/plugins/module_utils
Using module_utils file ansible_collections/ansible/netcommon
Using module_utils file ansible_collections/ansible/netcommon/plugins
Using module_utils file ansible_collections/ansible/netcommon/plugins/module_utils/network/common/utils
Using module_utils file ansible_collections/ansible/netcommon/plugins/module_utils/network/common
Using module_utils file ansible_collections/ansible
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/network.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/connection.py
Using module_utils file ansible_collections/f5networks/f5_modules/plugins/module_utils/constants
Using module_utils file ansible_collections/ansible/netcommon/plugins/module_utils/network/common/config
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/common/json.py
Using module_utils file /usr/lib/python3.9/site-packages/ansible/module_utils/urls.py
Using module file /root/.ansible/collections/ansible_collections/f5networks/f5_modules/plugins/modules/bigip_device_info.py
<localhost> PUT /root/.ansible/tmp/ansible-local-40137riosucd/tmpuqs45gbm TO /root/.ansible/tmp/ansible-tmp-1623297909.581751-4030-72597246055844/AnsiballZ_bigip_device_info.py
<localhost> EXEC /bin/sh -c 'chmod u+x /root/.ansible/tmp/ansible-tmp-1623297909.581751-4030-72597246055844/ /root/.ansible/tmp/ansible-tmp-1623297909.581751-4030-72597246055844/AnsiballZ_bigip_device_info.py && sleep 0'
<localhost> EXEC /bin/sh -c 'python3 /root/.ansible/tmp/ansible-tmp-1623297909.581751-4030-72597246055844/AnsiballZ_bigip_device_info.py && sleep 0'
<localhost> EXEC /bin/sh -c 'rm -f -r /root/.ansible/tmp/ansible-tmp-1623297909.581751-4030-72597246055844/ > /dev/null 2>&1 && sleep 0'
fatal: [10.1.1.245]: FAILED! => {
    "changed": false,
    "invocation": {
        "module_args": {
            "gather_subset": [
                "all",
                "!as3"
            ],
            "provider": {
                "auth_provider": null,
                "no_f5_teem": null,
                "password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER",
                "server": "10.1.1.245",
                "server_port": null,
                "timeout": null,
                "transport": "rest",
                "user": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER",
                "validate_certs": false
            }
        }
    },
    "msg": "value of gather_subset must be one or more of: all, monitors, profiles, gtm-pools, gtm-wide-ips, apm-access-profiles, apm-access-policies, as3, asm-policies, asm-policy-stats, asm-server-technologies, asm-signature-sets, client-ssl-profiles, cfe, devices, device-groups, do, external-monitors, fasthttp-profiles, fastl4-profiles, gateway-icmp-monitors, gtm-a-pools, gtm-servers, gtm-a-wide-ips, gtm-aaaa-pools, gtm-aaaa-wide-ips, gtm-cname-pools, gtm-cname-wide-ips, gtm-mx-pools, gtm-mx-wide-ips, gtm-naptr-pools, gtm-naptr-wide-ips, gtm-srv-pools, gtm-srv-wide-ips, gtm-topology-regions, http-profiles, http-monitors, https-monitors, iapp-services, iapplx-packages, icmp-monitors, interfaces, internal-data-groups, irules, ltm-pools, ltm-policies, management-routes, nodes, oneconnect-profiles, partitions, provision-info, remote-syslog, route-domains, self-ips, server-ssl-profiles, software-volumes, software-images, software-hotfixes, ssl-certs, ssl-keys, sync-status, system-db, system-info, ts, tcp-monitors, tcp-half-open-monitors, tcp-profiles, traffic-groups, trunks, udp-profiles, users, vcmp-guests, virtual-addresses, virtual-servers, vlans, !all, !monitors, !profiles, !gtm-pools, !gtm-wide-ips, !apm-access-profiles, !apm-access-policies, !asm-policy-stats, !asm-policies, !asm-server-technologies, !asm-signature-sets, !client-ssl-profiles, !devices, !device-groups, !external-monitors, !fasthttp-profiles, !fastl4-profiles, !gateway-icmp-monitors, !gtm-a-pools, !gtm-servers, !gtm-a-wide-ips, !gtm-aaaa-pools, !gtm-aaaa-wide-ips, !gtm-cname-pools, !gtm-cname-wide-ips, !gtm-mx-pools, !gtm-mx-wide-ips, !gtm-naptr-pools, !gtm-naptr-wide-ips, !gtm-srv-pools, !gtm-srv-wide-ips, !gtm-topology-regions, !http-profiles, !http-monitors, !https-monitors, !iapp-services, !iapplx-packages, !icmp-monitors, !interfaces, !internal-data-groups, !irules, !ltm-pools, !ltm-policies, !management-routes, !nodes, !oneconnect-profiles, !partitions, !provision-info, !remote-syslog, !route-domains, !self-ips, !server-ssl-profiles, !software-volumes, !software-images, !software-hotfixes, !ssl-certs, !ssl-keys, !sync-status, !system-db, !system-info, !tcp-monitors, !tcp-half-open-monitors, !tcp-profiles, !traffic-groups, !trunks, !udp-profiles, !users, !vcmp-guests, !virtual-addresses, !virtual-servers, !vlans. Got no match for: !as3"
}

PLAY RECAP *********************************************************************************************************************************************
10.1.1.245                 : ok=1    changed=0    unreachable=0    failed=1    skipped=0    rescued=0    ignored=0
trinaths commented 3 years ago

@codecowboydotio can you try with the devel version. We fixed this with https://github.com/F5Networks/f5-ansible/commit/79a4a4e758dfa47236dac76f7f449a92713832f9

wojtek0806 commented 3 years ago

This is a duplicate of this issue: https://github.com/F5Networks/f5-ansible/issues/1986