summaryrefslogtreecommitdiff
path: root/roles/elevate/liquidtruth/tasks/mongodb.yml
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2019-06-09 22:15:10 +0200
committerChristian Pointner <equinox@spreadspace.org>2019-06-09 22:15:10 +0200
commite8631202bb490dde9e245bc668ee4ec8fcc35362 (patch)
treeb3223626c9f3338402a43d04a61b172265aa20ca /roles/elevate/liquidtruth/tasks/mongodb.yml
parentliquid truth: mongodb + nginx (diff)
liquid-truth vs liquidtruth
Diffstat (limited to 'roles/elevate/liquidtruth/tasks/mongodb.yml')
-rw-r--r--roles/elevate/liquidtruth/tasks/mongodb.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/roles/elevate/liquidtruth/tasks/mongodb.yml b/roles/elevate/liquidtruth/tasks/mongodb.yml
new file mode 100644
index 00000000..244d9849
--- /dev/null
+++ b/roles/elevate/liquidtruth/tasks/mongodb.yml
@@ -0,0 +1,21 @@
+---
+- name: create mongodb data directory
+ file:
+ name: /srv/mongodb
+ state: directory
+
+- name: create bind mount for mongodb
+ mount:
+ src: /srv/mongodb
+ path: /var/lib/mongodb
+ fstype: none
+ opts: bind,defaults
+ state: mounted
+
+- name: install mongodb server
+ apt:
+ name:
+ - mongodb
+ - mongo-tools
+ - python-pymongo
+ state: present