diff options
author | Carlos E. Garcia <carlos@cgarcia.org> | 2016-12-10 21:50:09 -0500 |
---|---|---|
committer | Brian Coca <bcoca@users.noreply.github.com> | 2016-12-13 13:51:13 -0500 |
commit | 0b8011436dc7f842b78298848e298f2a57ee8d78 (patch) | |
tree | 239496b48fd051dcdc6cacf18c9bae48728aad1e /lib/ansible/playbook | |
parent | 054a3fccf808cc9746e773818dfcfbc4fbca7eb7 (diff) | |
download | ansible-0b8011436dc7f842b78298848e298f2a57ee8d78.tar.gz |
minor spelling changes
Diffstat (limited to 'lib/ansible/playbook')
-rw-r--r-- | lib/ansible/playbook/play_context.py | 2 | ||||
-rw-r--r-- | lib/ansible/playbook/task.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/playbook/play_context.py b/lib/ansible/playbook/play_context.py index b04cb7f056..cf2b7b481e 100644 --- a/lib/ansible/playbook/play_context.py +++ b/lib/ansible/playbook/play_context.py @@ -557,7 +557,7 @@ class PlayContext(Base): if self.become_user: flags += ' -u %s ' % self.become_user - #FIXME: make shell independant + #FIXME: make shell independent becomecmd = '%s %s echo %s && %s %s env ANSIBLE=true %s' % (exe, flags, success_key, exe, flags, cmd) elif self.become_method == 'dzdo': diff --git a/lib/ansible/playbook/task.py b/lib/ansible/playbook/task.py index d568911f8b..ec89fc51e9 100644 --- a/lib/ansible/playbook/task.py +++ b/lib/ansible/playbook/task.py @@ -427,7 +427,7 @@ class Task(Base, Conditional, Taggable, Become): path_stack = [] dep_chain = self.get_dep_chain() - # inside role: add the dependency chain from current to dependant + # inside role: add the dependency chain from current to dependent if dep_chain: path_stack.extend(reversed([x._role_path for x in dep_chain])) |