mirror of
https://github.com/status-im/ansible-role-mongodb.git
synced 2025-02-09 11:44:36 +00:00
Merge pull request #38 from flyingelephantlab/master
Adding wait after mongodb restart
This commit is contained in:
commit
e3e2b34e3a
@ -6,6 +6,9 @@
|
||||
service: name={{ mongodb_daemon_name }} state=restarted
|
||||
when: mongodb_manage_service
|
||||
|
||||
- name: wait MongoDB port is listening
|
||||
wait_for: host="{{ mongodb_conf_bind_ip }}"port="{{ mongodb_conf_port }}" delay=5 state=started
|
||||
|
||||
- name: get pid of mongodb for non daemon mode
|
||||
shell: "pidof mongod"
|
||||
register: pidof_mongod
|
||||
@ -64,6 +67,9 @@
|
||||
service: name={{ mongodb_daemon_name }} state=restarted
|
||||
when: mongodb_manage_service
|
||||
|
||||
- name: wait MongoDB port is listening
|
||||
wait_for: host="{{ mongodb_conf_bind_ip }}"port="{{ mongodb_conf_port }}" delay=5 state=started
|
||||
|
||||
- name: stop mongodb if was not started
|
||||
shell: "kill {{ pidof_mongod.stdout }}"
|
||||
when: mongodb_manage_service == false and pidof_mongod.rc == 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user