From e0e02b567c183dfc7271ab82846e8760eb2143b6 Mon Sep 17 00:00:00 2001 From: franklin Date: Mon, 12 Oct 2020 09:57:41 +0200 Subject: [PATCH] docs: update README --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index c87eece..8d01292 100644 --- a/README.md +++ b/README.md @@ -127,6 +127,14 @@ These are the handlers that are defined in `handlers/main.yml`. ```yaml --- +- name: test and restart apache2 + command: apache2ctl configtest + notify: restart apache2 + +- name: test and reload apache2 + command: apache2ctl configtest + notify: reload apache2 + - name: restart apache2 service: name=apache2 state=restarted when: apache2_service_state != 'stopped'