X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=ansible%2Finstall.yml;h=d5f00ee2c6d64d8414b8f85bbfb4934d34cfc5bc;hb=2542bfaa225f20272df99f1ccab5236326f16070;hp=1d73779d9ebcdfc8a7f9f83c916832a5f0b41fa8;hpb=e522d9bbd77629e9a25b34cdb46568e8d5df85f3;p=osm%2Fvim-emu.git diff --git a/ansible/install.yml b/ansible/install.yml index 1d73779..d5f00ee 100755 --- a/ansible/install.yml +++ b/ansible/install.yml @@ -12,6 +12,12 @@ - name: install libzmq-dev apt: pkg=libzmq-dev state=installed + - name: install libffi-dev + apt: pkg=libffi-dev state=installed + + - name: install libssl-dev + apt: pkg=libssl-dev state=installed + - name: install pip apt: pkg=python-pip state=installed @@ -19,19 +25,49 @@ pip: name=setuptools state=latest - name: install zerorpc - pip: name=zerorpc + pip: name=zerorpc state=latest - name: install tabulate - pip: name=tabulate + pip: name=tabulate state=latest - name: install argparse - pip: name=argparse + pip: name=argparse state=latest - name: install networkx - pip: name=networkx + pip: name=networkx state=latest + + - name: install six + pip: name=six state=latest - name: install ryu - pip: name=ryu + pip: name=ryu state=latest - name: install oslo.config - pip: name=oslo.config + pip: name=oslo.config state=latest + + - name: install pytest + pip: name=pytest state=latest + + - name: install Flask + pip: name=Flask state=latest + + - name: install flask_restful + pip: name=flask_restful state=latest + + - name: install requests + pip: name=requests state=latest + + - name: install docker + pip: name=docker version=2.0.2 + + - name: install prometheus_client + pip: name=prometheus_client state=latest + + - name: install latest urllib3 (fix error urllib3.connection.match_hostname = match_hostname) + pip: name=urllib3 state=latest + + - name: install iptc + pip: name=python-iptables state=latest + + +