I'm pretty new to puppet, but I find this module far more complicated than others. This is my manifest file: ``` ruby (... apache, php, postgres stuff ...) ## Begin Solr Manifest class { 'solr': install_source => "http://archive.apache.org/dist/lucene/solr/4.3.0/solr-4.3.0.tgz", config_dir => '/vagrant/static/solr/conf', config_file => '/vagrant/static/solr/conf/solrconfig.xml' } ``` I'm provisioning a vagrant / virtualbox VM (CentOS 6.5). Provisioning ends with no errors, but: - solr service never started - solr src sits at /opt/solr/solr-4.3.0 and no "deployment" of the example folder was done Am I missing something? Documentation just says `class { 'solr': }` so I'm guessing I am. Thanks!
I'm pretty new to puppet, but I find this module far more complicated than others.
This is my manifest file:
I'm provisioning a vagrant / virtualbox VM (CentOS 6.5).
Provisioning ends with no errors, but:
Am I missing something? Documentation just says
class { 'solr': }so I'm guessing I am.Thanks!