Hi,
I'm using ansible on my macbook (running Mojave) and when I run a playbook, 
the task's names are not printed.

ansible version:
ansible 2.4.6.0
  config file = /Users/xxxxx/ansible/ansible.cfg
  configured module search path = 
[u'/Users/xxxxx/.ansible/plugins/modules', 
u'/usr/share/ansible/plugins/modules']
  ansible python module location = /Library/Python/2.7/site-packages/ansible
  executable location = /usr/local/bin/ansible
  python version = 2.7.10 (default, Aug 17 2018, 17:41:52) [GCC 4.2.1 
Compatible Apple LLVM 10.0.0 (clang-1000.0.42)]

Playbook: test.yml

---
- name: test
  hosts: localhost
  tasks:
    - name: debug from me
      debug:
        msg: "hello world"

Expected result:
PLAY [test play] **********************************************


TASK [Gathering Facts] *********************************************

Wednesday 24 October 2018  15:50:49 -0400 (0:00:00.167)       0:00:00.167 
*****

ok: [localhost]

 
TASK [my debug] 
*************************************************************

Wednesday 24 October 2018  15:50:51 -0400 (0:00:02.155)       0:00:02.322 
*****

ok: [localhost] => {

    "msg": "hello world"

}


What I get:
Wednesday 24 October 2018  15:50:49 -0400 (0:00:00.167)       0:00:00.167 
*****

ok: [localhost]


Wednesday 24 October 2018  15:50:51 -0400 (0:00:02.155)       0:00:02.322 
*****

ok: [localhost] => {

    "msg": "hello world"

}






Anyone has an idea why the task's name are not printed?


Regards,

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/5f6abd51-c5c6-4bb6-9095-e880899f3824%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to