Authored by chunhua.zhang

add

---
# tasks file for openresty
- name: make sure openresty foler exist
stat:
- stat:
path: "{{ path }}"
register: stat_result
fail:
- fail:
msg: " openresty {{ path }} not exist!"
when: stat_result.stat.exists == False
... ...