diff --git a/lib/ansible/cli/vault.py b/lib/ansible/cli/vault.py index 737d0313944..ce3da2b8fe1 100644 --- a/lib/ansible/cli/vault.py +++ b/lib/ansible/cli/vault.py @@ -96,7 +96,7 @@ class VaultCLI(CLI): self.parser = CLI.base_parser( vault_opts=True, usage="usage: %%prog [%s] [options] [vaultfile.yml]" % "|".join(self.VALID_ACTIONS), - desc="encryption/decryption utility for Ansbile data files", + desc="encryption/decryption utility for Ansible data files", epilog="\nSee '%s --help' for more information on a specific command.\n\n" % os.path.basename(sys.argv[0]) ) diff --git a/lib/ansible/module_utils/service.py b/lib/ansible/module_utils/service.py index 4a27fde3147..918d55da505 100644 --- a/lib/ansible/module_utils/service.py +++ b/lib/ansible/module_utils/service.py @@ -79,7 +79,7 @@ def fail_if_missing(module, found, service, msg=''): This function will return an error or exit gracefully depending on check mode status and if the service is missing or not. - :arg module: is an AnsbileModule object, used for it's utility methods + :arg module: is an AnsibleModule object, used for it's utility methods :arg found: boolean indicating if services was found or not :arg service: name of service :kw msg: extra info to append to error/success msg when missing @@ -95,7 +95,7 @@ def daemonize(module, cmd): ''' Execute a command while detaching as a daemon, returns rc, stdout, and stderr. - :arg module: is an AnsbileModule object, used for it's utility methods + :arg module: is an AnsibleModule object, used for it's utility methods :arg cmd: is a list or string representing the command and options to run This is complex because daemonization is hard for people. diff --git a/lib/ansible/modules/cloud/packet/packet_device.py b/lib/ansible/modules/cloud/packet/packet_device.py index 79fbc77a948..3ce4f2867e7 100644 --- a/lib/ansible/modules/cloud/packet/packet_device.py +++ b/lib/ansible/modules/cloud/packet/packet_device.py @@ -335,7 +335,7 @@ def listify_string_name_or_id(s): def get_hostname_list(module): # hostname is a list-typed param, so I guess it should return list - # (and it does, in Ansbile 2.2.1) but in order to be defensive, + # (and it does, in Ansible 2.2.1) but in order to be defensive, # I keep here the code to convert an eventual string to list hostnames = module.params.get('hostnames') count = module.params.get('count') diff --git a/lib/ansible/plugins/callback/default.py b/lib/ansible/plugins/callback/default.py index 87d7e336427..ba215783c14 100644 --- a/lib/ansible/plugins/callback/default.py +++ b/lib/ansible/plugins/callback/default.py @@ -17,7 +17,7 @@ ''' DOCUMENTATION: callback: default - short_description: default Ansbile screen output + short_description: default Ansible screen output version_added: historical description: - This is the default output callback for ansible-playbook. diff --git a/lib/ansible/plugins/callback/logstash.py b/lib/ansible/plugins/callback/logstash.py index 61177cca4ca..2a2f7133b28 100644 --- a/lib/ansible/plugins/callback/logstash.py +++ b/lib/ansible/plugins/callback/logstash.py @@ -192,7 +192,7 @@ class CallbackModule(CallbackBase): 'ansible_task': result._task, 'ansible_result': self._dump_results(result._result) } - self.logger.error("ansbile unreachable", extra=data) + self.logger.error("ansible unreachable", extra=data) def v2_runner_on_async_failed(self, result, **kwargs): data = {