Keep zookeeper enabled
Without this, the service seems to just loop failing to start indefinitely even though PVC attempts to start the daemon itself. Reenabling seems to work. Likely a bug due to Zookeeper not being a proper systemd unit.
This commit is contained in:
parent
90273f6599
commit
ebcd281490
|
@ -18,11 +18,11 @@
|
||||||
- zoo.cfg
|
- zoo.cfg
|
||||||
notify: restart zookeeper
|
notify: restart zookeeper
|
||||||
|
|
||||||
- name: start but disable services
|
- name: start and enable services
|
||||||
service:
|
service:
|
||||||
name: "{{ item }}"
|
name: "{{ item }}"
|
||||||
state: started
|
state: started
|
||||||
enabled: no
|
enabled: yes
|
||||||
with_items:
|
with_items:
|
||||||
- zookeeper
|
- zookeeper
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue