This doesn't matter.

On Thursday, February 1, 2018 at 1:37:49 AM UTC+5:30, ZillaYT wrote:
>
> Try enclosing the name in double-quotes, e.g.,
>
>   tasks:
>     - name: "Installing {{ item }}"
>       yum:
>         name: "{{ item }}"
>         state: latest
>       with_items:
>         - httpd
>         - firewalld
>
>
> On Monday, January 29, 2018 at 11:02:58 AM UTC-5, Varun Chopra wrote:
>>
>> Hi,
>>
>> I'm trying to display the item name in the name of the task but it 
>> doesn't work as intended.
>>
>> Here's part of my play:
>>
>>   tasks:
>>     - name: Installing {{ item }}
>>       yum:
>>         name: "{{ item }}"
>>         state: latest
>>       with_items:
>>         - httpd
>>         - firewalld
>>
>> This is what I get when I run the play:
>>
>> TASK [Installing {{ item }}] 
>> ******************************************************************************************
>> ok: [servera.example.com] => (item=[u'httpd', u'firewalld'])
>>
>> Is this supposed to work this way? I
>>
>>

-- 
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/babbaf31-78b6-47be-a91b-96709c77edab%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to