Skip to content
This repository has been archived by the owner on Nov 19, 2020. It is now read-only.

Commit

Permalink
replace, instead of append
Browse files Browse the repository at this point in the history
  • Loading branch information
JaredGordon committed Mar 13, 2017
1 parent 4e4f0eb commit 9b78aa6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kafka_server/jobs/kafka_server/templates/bin/kafka_ctl.erb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ case $1 in
exec chpst -u vcap:vcap /var/vcap/packages/kafka/kafka_2.11-0.10.1.0/bin/kafka-server-start.sh \
/var/vcap/packages/kafka/kafka_2.11-0.10.1.0/config/server.properties &

echo $! >> ${PIDFILE}
echo $! > ${PIDFILE}
;;

stop)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ case $1 in
exec chpst -u vcap:vcap /var/vcap/packages/kafka/kafka_2.11-0.10.1.0/bin/zookeeper-server-start.sh \
/var/vcap/packages/kafka/kafka_2.11-0.10.1.0/config/zookeeper.properties &

echo $! >> ${PIDFILE}
echo $! > ${PIDFILE}

;;

Expand Down

0 comments on commit 9b78aa6

Please sign in to comment.