aboutsummaryrefslogtreecommitdiff
path: root/ansible/roles/common/tasks/install_deps.yml
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/roles/common/tasks/install_deps.yml')
-rw-r--r--ansible/roles/common/tasks/install_deps.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/ansible/roles/common/tasks/install_deps.yml b/ansible/roles/common/tasks/install_deps.yml
new file mode 100644
index 0000000..775f4bf
--- /dev/null
+++ b/ansible/roles/common/tasks/install_deps.yml
@@ -0,0 +1,15 @@
+# Install all dependencies required by roadmap.
+- name: install-os-deps
+ apt: name={{ item }}
+ with_items:
+ - apache2
+ - libapache2-mod-wsgi
+ - git
+ - python-pip
+ - python-tz
+
+# PIP installation if necessary.
+- name: install-pip-deps
+ pip: name={{ item }}
+ with_items:
+ - virtualenvwrapper