2016-06-24 02:52:49 +02:00
|
|
|
# This test ensures that included tasks are run in order.
|
|
|
|
# There have been regressions where included tasks and
|
|
|
|
# nested blocks ran out of order...
|
|
|
|
|
2019-01-26 04:37:56 +01:00
|
|
|
- shell: printf one.{{ item }}. >> {{ temppath }}
|
2016-06-24 02:52:49 +02:00
|
|
|
- block:
|
2019-01-26 04:37:56 +01:00
|
|
|
- shell: printf two.{{ item }}. >> {{ temppath }}
|
2016-06-24 02:52:49 +02:00
|
|
|
- block:
|
2019-01-26 04:37:56 +01:00
|
|
|
- shell: printf three.{{ item }}. >> {{ temppath }}
|
|
|
|
- shell: printf four.{{ item }}. >> {{ temppath }}
|