Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#4 Copy solr.xml file for not default data dir #5

Merged
merged 1 commit into from
Jan 11, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [1.1.1] 2017-01-11
### Fixed
- *#4 Copy solr.xml file for not default data dir* @jmonterrubio

## [1.1.0]
### Added
- *#1 Enable all the jetty HttpConfiguration parameters from ansible* @jmonterrubio
Expand Down
9 changes: 8 additions & 1 deletion tasks/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,20 @@
force: yes
notify: restart SolrCloud

- name: SolrCloud | Configuring SolrCloud
- name: SolrCloud | Configuring SolrCloud init script
template:
src: solr.in.sh.j2
dest: /etc/default/solr.in.sh
force: yes
notify: restart SolrCloud

- name: SolrCloud | Configuring SolrCloud properties
template:
src: solr.xml.j2
dest: "{{ solr_data_dir }}/solr.xml"
force: yes
notify: restart SolrCloud

- name: SolrCloud | Configuring logging
template:
src: log4j.properties.j2
Expand Down