NSB: MultiPortConfig adjust start_core
[yardstick.git] / docker / supervisor.sh
1 #!/bin/bash
2 ##############################################################################
3 # Copyright (c) 2017 Huawei Technologies Co.,Ltd and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 # nginx service start when boot
12 supervisor_config='/etc/supervisor/conf.d/yardstick.conf'
13
14 if [[ ! -e "${supervisor_config}" ]];then
15     cat << EOF > "${supervisor_config}"
16 [supervisord]
17 nodaemon = true
18
19 [program:nginx]
20 command = service nginx restart
21
22 [program:yardstick_uwsgi]
23 directory = /etc/yardstick
24 command = uwsgi -i yardstick.ini
25 EOF
26 fi