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 2023-09-01 15:42:20 -04:00
parent 90273f6599
commit ebcd281490
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