I have a lot of includes in my roles and I replaced them with include_tasks 
which seems to be working fine. Just for one instance there is a problem. 
The original task in that role looks like this:

```

- name: "Install Drupal"
  include: install.yml
  with_items: '{{ drupal_settings }}'

```


This works just fine but when I update that definition into this:



```

- name: "Install Drupal"
  include_tasks: install.yml
  with_items: '{{ drupal_settings }}'

```


it doesn't do anything. It doesn't even print the name "Install Drupal". 
Debugging doesn't provide any more details.

Does that mean thet include_tasks doesn't work in loops?

-- 
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 ansible-project+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/d4a753f7-5965-4d70-88fc-80660e6c5842%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to