Skip to content

Commit

Permalink
Fix more providers
Browse files Browse the repository at this point in the history
  • Loading branch information
Kidswiss committed Nov 29, 2019
1 parent 725afd6 commit e6b34ae
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#### Features

#### Fixes
* Fix "Could not autoload" errors in more types/providers.

## 6.4.0 (August 28, 2019)

Expand Down
2 changes: 1 addition & 1 deletion lib/puppet/provider/elasticsearch_plugin/plugin.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require 'puppet/provider/elastic_plugin'
require File.join(File.dirname(__FILE__), '..', '..', '..', 'puppet/provider/elastic_plugin')

Puppet::Type.type(:elasticsearch_plugin).provide(
:plugin,
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet/provider/elasticsearch_user_file/oss_xpack.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require 'puppet/provider/elastic_parsedfile'
require File.join(File.dirname(__FILE__), '..', '..', '..', 'puppet/provider/elastic_parsedfile')

Puppet::Type.type(:elasticsearch_user_file).provide(
:oss_xpack,
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet/provider/elasticsearch_user_file/shield.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require 'puppet/provider/elastic_parsedfile'
require File.join(File.dirname(__FILE__), '..', '..', '..', 'puppet/provider/elastic_parsedfile')

Puppet::Type.type(:elasticsearch_user_file).provide(
:shield,
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet/provider/elasticsearch_user_file/xpack.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require 'puppet/provider/elastic_parsedfile'
require File.join(File.dirname(__FILE__), '..', '..', '..', 'puppet/provider/elastic_parsedfile')

Puppet::Type.type(:elasticsearch_user_file).provide(
:xpack,
Expand Down

0 comments on commit e6b34ae

Please sign in to comment.