Merge "Document for Euphrates test case results"
[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 - name: Create the UWSGI config file
43   template:
44     src: yardstick.ini.j2
45     dest: "{{ config_dir }}yardstick.ini"