ansible-role-mongodb/tasks/configure.yml

63 lines
1.9 KiB
YAML
Raw Normal View History

2014-06-04 15:03:58 +00:00
---
- name: Create keyFile
copy:
2016-04-17 13:43:00 +00:00
dest: "{{ mongodb_security_keyfile }}"
content: "{{ mongodb_keyfile_content }}"
owner: "{{ mongodb_user }}"
group: "root"
mode: 0600
2016-04-17 13:43:00 +00:00
when: mongodb_replication_replset and mongodb_replication_replset != ''
- name: set mongodb gid
group: name=mongodb gid={{ mongodb_gid }} state=present
when: mongodb_gid
- name: set mongodb uid
user: name=mongodb uid={{ mongodb_uid }} group=mongodb state=present
when: mongodb_uid
2014-12-11 19:09:31 +00:00
- name: reset mongodb folder and subfolders with new uid
2016-04-17 13:43:00 +00:00
file: path={{ mongodb_storage_dbpath }} owner=mongodb group=mongodb follow=yes recurse=yes state=directory
when: mongodb_uid
2014-12-11 19:09:31 +00:00
- name: Create log dir if missing
2016-04-17 13:43:00 +00:00
file: state=directory recurse=yes dest={{ mongodb_systemlog_path|dirname }} owner={{ mongodb_user }} group={{mongodb_user}} mode=0755
2015-06-16 11:32:39 +00:00
- name: Check than logfile exists
2016-04-17 13:43:00 +00:00
stat: path={{ mongodb_systemlog_path }}
2015-06-16 11:32:39 +00:00
register: logfile_stat
- name: Create log if missing
2016-04-17 13:43:00 +00:00
file: state=touch dest={{ mongodb_systemlog_path }} owner={{ mongodb_user }} group={{mongodb_user}} mode=0755
2015-06-16 11:32:39 +00:00
when: logfile_stat is defined and not logfile_stat.stat.exists
2014-12-26 15:32:50 +00:00
- name: Ensure dbpath directory
file:
path: "{{ mongodb_storage_dbpath }}"
state: directory
owner: "{{ mongodb_user }}"
recurse: yes
2015-02-17 07:28:24 +00:00
- name: Configure mongodb
template: src=mongod.conf.j2 dest=/etc/mongod.conf backup=yes owner=root group=root mode=0644
2015-02-17 07:28:24 +00:00
register: config_result
- name: mongodb restart
service: name={{ mongodb_daemon_name }} state=restarted
when: config_result|changed and mongodb_manage_service
- name: Ensure service is started
service: name={{ mongodb_daemon_name }} state=started
- name: Set fact about wait_for host address
set_fact:
wait_for_host: 127.0.0.1
2016-04-17 13:43:00 +00:00
when: mongodb_net_bindip == "0.0.0.0"
- name: Wait when mongodb is started
wait_for:
2016-04-17 13:43:00 +00:00
host: "{{ wait_for_host | default(mongodb_net_bindip) }}"
port: "{{ mongodb_net_port }}"
timeout: 120