diff --git a/01_vars.yml b/01_vars.yml index c04dad6..02f19bd 100644 --- a/01_vars.yml +++ b/01_vars.yml @@ -26,3 +26,8 @@ - name: Show Status ansible.builtin.debug: var: httpd_status + + - name: Is httpd running + ansible.builtin.debug: + msg: httpd is running + when: httpd_status.state == "started"