From 80433c2a2d0555bf3b9eeb47d11cf44031cb8b88 Mon Sep 17 00:00:00 2001 From: Jason O'Donnell Date: Mon, 26 Oct 2015 17:01:30 -0400 Subject: [PATCH 1/4] Fxing typo --- lib/ansible/plugins/connection/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/connection/__init__.py b/lib/ansible/plugins/connection/__init__.py index 4618a30bc44..4943aeccbf1 100644 --- a/lib/ansible/plugins/connection/__init__.py +++ b/lib/ansible/plugins/connection/__init__.py @@ -177,7 +177,7 @@ class ConnectionBase(with_metaclass(ABCMeta, object)): Setting this up is performed by the action plugin prior to running ``exec_command``. So we just get passed :param:`cmd` which has the BecomeCommand already added. (Examples: sudo, su) - :Command: Is the command we're actualy trying to run remotely. + :Command: Is the command we're actually trying to run remotely. (Examples: mkdir -p $HOME/.ansible, python $HOME/.ansible/tmp-script-file) """ pass From ac9b35cc2b951ebcda2b7f2e53d24b55a02ef36d Mon Sep 17 00:00:00 2001 From: Jason O'Donnell Date: Mon, 26 Oct 2015 17:04:28 -0400 Subject: [PATCH 2/4] Found another typo --- lib/ansible/plugins/action/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/action/__init__.py b/lib/ansible/plugins/action/__init__.py index 6b69a3367b4..64e0cee2792 100644 --- a/lib/ansible/plugins/action/__init__.py +++ b/lib/ansible/plugins/action/__init__.py @@ -154,7 +154,7 @@ class ActionBase(with_metaclass(ABCMeta, object)): continue if not isinstance(environment, dict): raise AnsibleError("environment must be a dictionary, received %s (%s)" % (environment, type(environment))) - # very deliberatly using update here instead of combine_vars, as + # very deliberately using update here instead of combine_vars, as # these environment settings should not need to merge sub-dicts final_environment.update(environment) From 7b0e68917cd7952ef69c15ffd1902ff7c24e02ba Mon Sep 17 00:00:00 2001 From: Jason O'Donnell Date: Mon, 26 Oct 2015 17:13:00 -0400 Subject: [PATCH 3/4] Fixing typo --- contrib/inventory/openvz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/inventory/openvz.py b/contrib/inventory/openvz.py index 719541cb7b4..68d51c8a42e 100755 --- a/contrib/inventory/openvz.py +++ b/contrib/inventory/openvz.py @@ -24,7 +24,7 @@ # https://github.com/ansible/ansible/blob/e5ef0eca03cbb6c8950c06dc50d0ca22aa8902f4/plugins/inventory/libvirt_lxc.py # # Groups are determined by the description field of openvz guests -# multiple groups can be seperated by commas: webserver,dbserver +# multiple groups can be separated by commas: webserver,dbserver from subprocess import Popen,PIPE import sys From 9dfa3719be49bf516c091fbacec73cac2ff074a1 Mon Sep 17 00:00:00 2001 From: Jason O'Donnell Date: Mon, 26 Oct 2015 17:13:49 -0400 Subject: [PATCH 4/4] Fixing typo --- lib/ansible/plugins/action/synchronize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/action/synchronize.py b/lib/ansible/plugins/action/synchronize.py index 28c9ba7af3d..2670cc92908 100644 --- a/lib/ansible/plugins/action/synchronize.py +++ b/lib/ansible/plugins/action/synchronize.py @@ -146,7 +146,7 @@ class ActionModule(ActionBase): use_delegate = False if dest_host == delegate_to: # edge case: explicit delegate and dest_host are the same - # so we run rsync on the remote machine targetting its localhost + # so we run rsync on the remote machine targeting its localhost # (itself) dest_host = '127.0.0.1' use_delegate = True