add yardstick iruya 9.0.0 release notes
[yardstick.git] / ansible / roles / configure_uwsgi / tasks / main.yml
1 # Copyright (c) 2018 Intel Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 ---
15 - name: Define variables
16   set_fact:
17     config_dir: "/etc/yardstick/"
18     log_dir: "/var/log/yardstick/"
19     socket_file: "/var/run/yardstick.sock"
20
21 - name: Create UWSGI config directory
22   file:
23     path: "/etc/yardstick"
24     state: directory
25     owner: root
26     mode: 0755
27
28 - name: Create API log directory
29   file:
30     path: "{{ log_dir }}"
31     state: directory
32     owner: root
33     mode: 0777
34
35 - name: Create the socket for communicating
36   file:
37     path: "{{ socket_file }}"
38     state: touch
39     owner: root
40     mode: 0644
41
42 - set_fact:
43     uwsgi_log: "logto"
44   when: installation_mode == inst_mode_container
45
46 - set_fact:
47     uwsgi_log: "daemonize"
48   when: installation_mode != inst_mode_container
49
50 - name: Create the UWSGI config file
51   template:
52     src: yardstick.ini.j2
53     dest: "{{ config_dir }}yardstick.ini"