diff options
author | Brian Coca <brian.coca+git@gmail.com> | 2018-05-21 18:25:52 +0200 |
---|---|---|
committer | Brian Coca <bcoca@users.noreply.github.com> | 2018-05-21 21:19:13 +0200 |
commit | 062f0444a1c48bc3c24c00ba4150cfa9fac1d05d (patch) | |
tree | 7e4becc5b7392b859e62a2e542ca123af7a5e315 | |
parent | reset_connection is not run_once (diff) | |
download | ansible-062f0444a1c48bc3c24c00ba4150cfa9fac1d05d.tar.xz ansible-062f0444a1c48bc3c24c00ba4150cfa9fac1d05d.zip |
remove extra )
-rw-r--r-- | lib/ansible/plugins/strategy/linear.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/plugins/strategy/linear.py b/lib/ansible/plugins/strategy/linear.py index a8e33d2b03..29721983cc 100644 --- a/lib/ansible/plugins/strategy/linear.py +++ b/lib/ansible/plugins/strategy/linear.py @@ -263,7 +263,7 @@ class StrategyModule(StrategyBase): # for the linear strategy, we run meta tasks just once and for # all hosts currently being iterated over rather than one host results.extend(self._execute_meta(task, play_context, iterator, host)) - if task.args.get('_raw_params', None) not in ('noop', 'reset_connection')): + if task.args.get('_raw_params', None) not in ('noop', 'reset_connection'): run_once = True else: # handle step if needed, skip meta actions as they are used internally |