diff options
author | Christian Pointner <equinox@spreadspace.org> | 2019-06-09 22:15:10 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2019-06-09 22:15:10 +0200 |
commit | e8631202bb490dde9e245bc668ee4ec8fcc35362 (patch) | |
tree | b3223626c9f3338402a43d04a61b172265aa20ca /roles/elevate/liquidtruth/tasks/mongodb.yml | |
parent | liquid 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.yml | 21 |
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 |