Merge pull request #10853 from cgar/spelling

just a few spelling error changes

I swear only 95% of those are mine!
This commit is contained in:
Brian Coca
2015-04-30 09:02:09 -04:00
32 changed files with 38 additions and 38 deletions

View File

@@ -354,9 +354,9 @@ class ActionBase:
# FIXME: async stuff here?
#if (module_style != 'new' or async_jid is not None or not self._connection._has_pipelining or not C.ANSIBLE_SSH_PIPELINING or C.DEFAULT_KEEP_REMOTE_FILES):
if remote_module_path:
debug("transfering module to remote")
debug("transferring module to remote")
self._transfer_data(remote_module_path, module_data)
debug("done transfering module to remote")
debug("done transferring module to remote")
environment_string = self._compute_environment_string()

View File

@@ -34,7 +34,7 @@ class ActionModule(ActionBase):
if src is None:
return dict(failed=True, msg="src is required")
elif remote_src:
# everyting is remote, so we just execute the module
# everything is remote, so we just execute the module
# without changing any of the module arguments
return self._execute_module()

View File

@@ -78,7 +78,7 @@ class Connection(object):
if in_data:
raise errors.AnsibleError("Internal Error: this module does not support optimized module pipelining")
# We ignore privelege escalation!
# We ignore privilege escalation!
local_cmd = self._generate_cmd(executable, cmd)
vvv("EXEC %s" % (local_cmd), host=self.lxc)

View File

@@ -111,7 +111,7 @@ class Connection(object):
if in_data:
raise errors.AnsibleError("Internal Error: this module does not support optimized module pipelining")
# We happily ignore privelege escalation
# We happily ignore privilege escalation
if executable == '/bin/sh':
executable = None
local_cmd = self._generate_cmd(executable, cmd)

View File

@@ -37,7 +37,7 @@ class LookupModule(LookupBase):
utils.warnings("Failed lookup url for %s : %s" % (term, str(e)))
continue
except HTTPError as e:
utils.warnings("Recieved HTTP error for %s : %s" % (term, str(e)))
utils.warnings("Received HTTP error for %s : %s" % (term, str(e)))
continue
for line in response.read().splitlines():