dwradcliffe / chef-solr

Chef cookbook for solr.
http://community.opscode.com/cookbooks/solr
MIT License
23 stars 39 forks source link

[templates] debian init.d - fix java_opts to string to cover space #23

Closed taverentech closed 9 years ago

taverentech commented 9 years ago

The new java_opts in debian init template is broken, as it does not quote a value with space: JAVA_OPTS=-Xms128M -Xmx512M

This results in the combined daemon args missing -Xmx512M which actually throws an error.

This fixes the output to this, which passes -Xmx512M along to daemon args and resolves error. JAVA_OPTS="-Xms128M -Xmx512M"

dwradcliffe commented 9 years ago

:+1: Thanks!