Skip to content

Commit

Permalink
Correct Handler reference
Browse files Browse the repository at this point in the history
  • Loading branch information
zaepho authored Jan 31, 2025
1 parent 374fdce commit 942b162
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/ansible_rhel/1.5-handlers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ Let's say we want to ensure the firewall is configured correctly on all web serv
```

The handler Restart Apache is triggered only if the task “Allow HTTP traffic on web servers” makes any changes.
The handler "Reload Firewall" is triggered only if the task “Allow HTTP traffic on web servers” makes any changes.

> NOTE: Notice how the name of the handler is used within the notify section of the “Reload Firewall” configuration task. This ensures that the proper handler is executed as there can be multiple handlers within an Ansible playbook.
> NOTE: Notice how the name of the handler is used within the notify section of the “Allow HTTP traffic on web servers” configuration task. This ensures that the proper handler is executed as there can be multiple handlers within an Ansible playbook.

```
PLAY [Basic System Setup] ******************************************************
Expand Down

0 comments on commit 942b162

Please sign in to comment.