Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ashish1099 committed Apr 25, 2017
2 parents 8ef0859 + 68610a9 commit 8d665a8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ Remember to restart any puppetmaster servers to clear provider caches and pull i
* Support management of the global jvm.options configuration file.
* Restricted permissions to the elasticsearch.yml file.
* X-Pack support added.
* X-Pack support added.
* Restricted permissions to the elasticsearch.yml file.
* Deprecation log configuration support added.
* Synced systemd service file with upstream.

Expand All @@ -71,6 +73,8 @@ Remember to restart any puppetmaster servers to clear provider caches and pull i
* Calls to `elasticsearch -version` in elasticsearch::plugin code replaced with native Puppet code to resolve Elasticsearch package version. Should improve resiliency when managing plugins.
* Removed deprecated ceritsc/yum module in favor of puppet/yum.
* Shield and X-Pack configuration files are stored in /etc/elasticsearch instead of /usr/share/elasticsearch.
* Shield and X-Pack configuration files are stored in /etc/elasticsearch instead of /usr/share/elasticsearch.
* Removed deprecated ceritsc/yum module in favor of puppet/yum.

#### Testing changes

Expand Down Expand Up @@ -126,6 +130,7 @@ This release also adds the ability to define logging rolling file settings and a
* Recursively create the logdir for elasticsearch when creating multiple instances
* Files and directories with root ownership now specify UID/GID 0 instead to improve compatability with *BSDs.
* Elasticsearch Debian init file changed to avoid throwing errors when DATA_DIR, WORK_DIR and/or LOG_DIR were an empty variable.
* Fixed a broken File dependency when a plugin was set to absent and ::elasticsearch set to present.
* Fixed issue when using the `proxy` parameter on plugins in Elasticsearch 2.x.

#### Changes
Expand Down
1 change: 0 additions & 1 deletion manifests/config.pp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@
file { $elasticsearch::params::pid_dir:
ensure => 'directory',
group => undef,
mode => '0755',
owner => $elasticsearch::elasticsearch_user,
mode => '0755',
recurse => true,
Expand Down
3 changes: 2 additions & 1 deletion spec/integration/integration001.rb
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ class { 'elasticsearch':
'network.host' => '0.0.0.0',
},
java_install => true,
package_url => '#{test_settings['snapshot_package']}'
package_url => '#{test_settings['snapshot_package']}',
restart_on_change => true,
}
elasticsearch::instance { 'es-01':
Expand Down

0 comments on commit 8d665a8

Please sign in to comment.