aboutsummaryrefslogtreecommitdiffstats
path: root/installation/ansible-server/src/main/scripts/startAnsibleServer.sh
blob: 67af96232e9d64f402684f94155115defec6966c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#/bin/bash

if [ ! -d /tmp/.ansible-server-installed]
then
	pip install PyMySQL
	pip install cherrypy
	pip install requests
	date > /tmp/.ansible-server-installed 2>&1
fi

cd /opt/onap/sdnc
exec python RestServer.py > RestServer.out