25 lines
570 B
YAML
25 lines
570 B
YAML
---
|
|
- name: Verify
|
|
hosts: all
|
|
tasks:
|
|
- name: Check if NGINX is installed
|
|
package:
|
|
name: nginx
|
|
check_mode: yes
|
|
register: install
|
|
failed_when: (install is changed) or (install is failed)
|
|
|
|
- name: Check if NGINX service is running
|
|
service:
|
|
name: nginx
|
|
state: started
|
|
enabled: yes
|
|
check_mode: yes
|
|
register: service
|
|
failed_when: (service is changed) or (service is failed)
|
|
|
|
- name: Verify NGINX is up and running
|
|
uri:
|
|
url: http://localhost
|
|
status_code: 200
|