| peusterm | 61db576 | 2016-01-14 16:30:04 +0100 | [diff] [blame^] | 1 | hosts: localhost |
| 2 | tasks: | ||||
| 3 | - name: updates apt | ||||
| 4 | apt: update_cache=yes | ||||
| 5 | |||||
| 6 | - name: install pip | ||||
| 7 | apt: pkg=python-pip state=installed | ||||
| 8 | |||||
| 9 | - name: install zerorpc | ||||
| 10 | pip: name=zerorpc | ||||
| 11 | |||||
| 12 | - name: install tabulate | ||||
| 13 | pip: name=tabulate | ||||
| 14 | |||||
| 15 | - name: install argparse | ||||
| 16 | pip: name=argparse | ||||
| 17 | |||||
| 18 | - name: install pprint | ||||
| 19 | pip: name=pprint | ||||