main.yml
1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
# tasks file for openresty
# make sure user type YES
- name: "make sure user type YES to confirm"
fail:
msg: "user do not type YES"
when: confirmation != 'YES'
# make sure user www exist
- name: "make sure user www exist"
user:
name: www
# make sure log path exist
- name: "make sure log path exist"
file:
path: /Data/logs/nginx/
state: directory
mode: 0755
owner: www
group: www
# make sure path exist
- stat:
path: "{{ path }}"
register: stat_result
- name: "make sure openresty path exist"
fail:
msg: " openresty {{ path }} not exist!"
when: stat_result.stat.exists == False
# make sure group exists
- name: make sure groups exist in inventory file
fail:
msg: "group {{ item }} not exist!"
when: item not in groups
with_items:
- nameservers
- ufo-nginx
- java-ufo-fore
- java-ufo-platform
- name: copy yoho conf files to openresty
copy:
src: java-nginx-config/nginx/conf/
dest: "{{ path }}/nginx/conf/"
notify:
- reload nginx
- name: update nginx upstream for file -nginx.conf
template:
src: nginx.conf.j2
dest: "{{ path }}/nginx/conf/nginx.conf"
notify:
- reload nginx