From 61db576adc6ba07ed0cbf294c653558c54b0858f Mon Sep 17 00:00:00 2001 From: peusterm Date: Thu, 14 Jan 2016 16:30:04 +0100 Subject: [PATCH] added Ansible based install script --- ansible/install.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ansible/install.yml diff --git a/ansible/install.yml b/ansible/install.yml new file mode 100644 index 0000000..6e1a1dc --- /dev/null +++ b/ansible/install.yml @@ -0,0 +1,19 @@ +hosts: localhost + tasks: + - name: updates apt + apt: update_cache=yes + + - name: install pip + apt: pkg=python-pip state=installed + + - name: install zerorpc + pip: name=zerorpc + + - name: install tabulate + pip: name=tabulate + + - name: install argparse + pip: name=argparse + + - name: install pprint + pip: name=pprint -- 2.17.1