add a pip install routine to the ansible role

This commit is contained in:
Andreas Zweili 2017-12-25 22:33:17 +01:00
parent 6fdad5704f
commit 058dc79bef
1 changed files with 7 additions and 0 deletions

View File

@ -22,5 +22,12 @@
owner=ansible group=ansible
recurse=yes
- name: Install pip packages
pip:
name:
- django-extensions
- Pillow
executable: pip3
- name: Restart apache service
service: name=apache2 state=restarted