Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed a few small typos #3251

Merged
merged 1 commit into from
Jun 18, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docsite/latest/rst/playbooks2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ decide to do something conditionally based on success or failure::
- action: command /bin/something
when: result|failed
- action: command /bin/something_else
when: result|sucess
when: result|success


As a reminder, to see what derived variables are available, you can do::
Expand Down
2 changes: 1 addition & 1 deletion library/cloud/quantum_router_interface
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def main():
if module.params['state'] == 'absent':
port_id = _get_port_id(quantum, module, router_id, subnet_id)
if not port_id:
module.exit_json(changed = False, result = "Sucess")
module.exit_json(changed = False, result = "Success")
_remove_interface_router(quantum, module, router_id, subnet_id)
module.exit_json(changed=True, result="Deleted")

Expand Down
2 changes: 1 addition & 1 deletion library/notification/mail
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ options:

EXAMPLES = '''
# Example playbook sending mail to root
- local_action: mail msg='System ${ansible_hostname} has been sucessfully provisioned.'
- local_action: mail msg='System ${ansible_hostname} has been successfully provisioned.'

# Send e-mail to a bunch of users, attaching files
- local_action: mail
Expand Down