X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=ansible%2Finstall.yml;h=dd6ef4cdfd72e4f0a38c1be10b80321d1e74d624;hb=f5a9169c0af28f1be3e878d12c7905562e513c1b;hp=6e73908bca0404e4c9288c254cf9a6d9d38dc1f0;hpb=7303abc38b4751466953c8db55815c63df6687ac;p=osm%2Fvim-emu.git diff --git a/ansible/install.yml b/ansible/install.yml old mode 100644 new mode 100755 index 6e73908..dd6ef4c --- a/ansible/install.yml +++ b/ansible/install.yml @@ -15,11 +15,29 @@ - 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 state=latest + + - name: install six + pip: name=six state=latest + + - name: install ryu + pip: name=ryu state=latest + + - name: install oslo.config + pip: name=oslo.config state=latest + + - name: install pytest + pip: name=pytest state=latest