X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=ansible%2Finstall.yml;h=b31615e92780135d6c483bcad4137b92e65d25e7;hb=1e7b06065d00930a5a8ce6f8e8838429a34856c5;hp=a374e0bd536b216e73e009f078d357cbec5d2aa8;hpb=a29c50cffd72de2f5533bb4f294adfe9a0f655d5;p=osm%2Fvim-emu.git diff --git a/ansible/install.yml b/ansible/install.yml index a374e0b..b31615e 100755 --- a/ansible/install.yml +++ b/ansible/install.yml @@ -15,17 +15,47 @@ - name: install pip apt: pkg=python-pip state=installed + - name: install setuptools + 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 \ No newline at end of file + pip: name=ryu state=latest + + - name: install 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-py + pip: name=docker-py state=latest + + - name: install prometheus_client + pip: name=prometheus_client state=latest + + +