ansible-role-mongodb/tasks/install.deb.yml

56 lines
1.5 KiB
YAML
Raw Normal View History

2014-06-04 15:03:58 +00:00
---
2015-01-07 11:31:53 +00:00
- include_vars: "{{ansible_distribution}}.yml"
- name: Check if running on systemd
command: cat /proc/1/cmdline
2015-02-25 07:57:36 +00:00
register: systemd
2015-06-16 08:19:58 +00:00
changed_when: false
2015-02-25 07:57:36 +00:00
- name: Add systemd configuration if present
copy: src=mongodb.service dest=/lib/systemd/system/mongodb.service owner=root group=root mode=0640
when: "'systemd' in systemd.stdout"
2015-02-25 07:57:36 +00:00
- name: Add symlink for systemd
file: src=/lib/systemd/system/mongodb.service dest=/etc/systemd/system/multi-user.target.wants/mongodb.service state=link
when: "'systemd' in systemd.stdout"
2015-02-25 07:57:36 +00:00
notify: reload systemd
- meta: flush_handlers
when: "'systemd' in systemd.stdout"
2015-02-25 07:57:36 +00:00
2014-06-04 15:03:58 +00:00
- name: Add APT key
apt_key: url="{{mongodb_apt_key_url}}" id="{{mongodb_apt_key_id}}"
2014-06-04 15:03:58 +00:00
2015-01-07 11:31:53 +00:00
- name: Add APT repository
apt_repository: repo="{{mongodb_repository}}" update_cache=yes
2015-01-07 11:31:53 +00:00
- name: Install MongoDB package
apt: name={{item}} state=present
with_items:
- "{{mongodb_package}}"
- numactl
2015-02-25 07:57:36 +00:00
- name: Ensure dbpath directory
file: path={{mongodb_conf_dbpath}} state=directory owner=mongodb recurse=yes
2015-02-26 14:11:22 +00:00
- name: reload systemd
shell: systemctl daemon-reload
changed_when: false
when: "'systemd' in systemd.stdout"
2015-04-06 16:38:52 +00:00
- name: Install PyMongo package
apt: pkg=python-pymongo state=latest
when: not mongodb_pymongo_from_pip
2015-04-06 16:51:47 +00:00
- name: Install PIP
2015-04-06 16:38:52 +00:00
apt: pkg={{ item }}
with_items:
- python-dev
- python-pip
when: mongodb_pymongo_from_pip
- name: Install PyMongo from PIP
pip: name=pymongo state=latest
when: mongodb_pymongo_from_pip