Move pip installs from Dockerfile
[sdnc/oam.git] / installation / ansible-server / src / main / scripts / startAnsibleServer.sh
1 #/bin/bash
2
3 if [ ! -d /tmp/.ansible-server-installed]
4 then
5         pip install PyMySQL
6         pip install cherrypy
7         pip install requests
8         date > /tmp/.ansible-server-installed 2>&1
9 fi
10
11 cd /opt/onap/sdnc
12 exec python RestServer.py > RestServer.out