1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

tag the setup task with always

fixes #14228
This commit is contained in:
Brian Coca 2016-02-02 16:30:58 -05:00
parent 5cd3f71792
commit 84f8241ff8

View file

@ -137,6 +137,7 @@ class PlayIterator:
setup_block = Block(play=self._play)
setup_task = Task(block=setup_block)
setup_task.action = 'setup'
setup_task.tags = ['always']
setup_task.args = {}
setup_task.set_loader(self._play._loader)
setup_block.block = [setup_task]