ansible-role-nginx/molecule/plus/verify.yml

26 lines
616 B
YAML
Raw Normal View History

2020-09-09 16:10:42 +02:00
---
- name: Verify
hosts: all
tasks:
- name: Check if NGINX Plus is installed
package:
name: nginx-plus
state: present
check_mode: true
register: install
failed_when: (install is changed) or (install is failed)
- name: Check if NGINX Plus service is running
2020-09-09 16:10:42 +02:00
service:
name: nginx
state: started
enabled: true
check_mode: true
2020-09-09 16:10:42 +02:00
register: service
failed_when: (service is changed) or (service is failed)
- name: Verify NGINX Plus is up and running
2020-09-09 16:10:42 +02:00
uri:
url: http://localhost
status_code: 200