In the ansible-kafka/tasks/system.yml, we have the following task:
- name: "Add kafka utilities to /etc/profile* so they'll be available in $PATH"
lineinfile: dest=/etc/profile.d/Z99-kafka.sh regexp="^export PATH=.*$" line='export PATH="${PATH}:/usr/local/lib/kafka/bin"' state=present create=yes
sudo: yes
Please bear in mind that /usr/local/lib/kafka/bin is wrong. It should be /usr/local/kafka/bin instead.
In the
ansible-kafka/tasks/system.yml
, we have the following task:Please bear in mind that
/usr/local/lib/kafka/bin
is wrong. It should be/usr/local/kafka/bin
instead.