blob: b2785d8fd3affe6bd8024d987c6a745fbc0fb4a4 (
plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
---
#- hosts: config
# sudo: yes
# tasks:
- name: "start supervisor support service"
# sudo: True
service:
name: "supervisor-support-service"
state: "started"
- name: "stop rabbitmq server via supervisor"
# sudo: True
supervisorctl:
name: "rabbitmq-server"
state: "stopped"
server_url: "unix:///tmp/supervisord_support_service.sock"
- name: "-rabbitmq-stop"
# sudo: True
include: -rabbitmq-stop.yml
- name: "update hosts"
# sudo: True
lineinfile:
dest: "/etc/hosts"
line: "{{ hostvars[item]['contrail_address'] }}\t{{ hostvars[item]['ansible_hostname'] }} {{ hostvars[item]['ansible_hostname'] }}-ctrl"
with_items: groups['opencontrail_config']
- name: "fix up rabbitmq env"
# sudo: True
template:
src: "provision/rabbitmq-env-conf.j2"
dest: "/etc/rabbitmq/rabbitmq-env.conf"
- name: "fix up rabbitmq config for single node"
# sudo: True
template:
src: "provision/rabbitmq-conf-single.j2"
dest: "/etc/rabbitmq/rabbitmq.config"
when: groups['opencontrail_config'][1] is not defined
- name: fix up rabbitmq config for multi nodes
# sudo: True
template:
src: "provision/rabbitmq-conf.j2"
dest: "/etc/rabbitmq/rabbitmq.config"
when: groups['opencontrail_config'][1] is defined
- name: "-rabbitmq-stop"
# sudo: True
include: -rabbitmq-stop.yml
- name: "create cookie uuid temporary"
# sudo: True
local_action:
module: "template"
src: "provision/rabbitmq-cookie.j2"
dest: "/tmp/tmp-rabbitmq-cookie"
run_once: yes
- name: "update cookie uuid"
# sudo: True
copy:
src: "/tmp/tmp-rabbitmq-cookie"
dest: "/var/lib/rabbitmq/.erlang.cookie"
owner: "rabbitmq"
group: "rabbitmq"
mode: 0400
- name: "delete temporary cookie uuid"
# sudo: True
local_action:
module: "file"
dest: "/tmp/tmp-rabbitmq-cookie"
state: "absent"
run_once: yes
- name: "start rabbitmq server"
# sudo: True
service:
name: "rabbitmq-server"
state: "started"
|