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:
Joshua Boniface 2019-06-17 12:08:47 -04:00
parent 296090d806
commit 5554418210
1 changed files with 2 additions and 2 deletions

View File

@ -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