Skip to content

Commit

Permalink
Merge pull request #1066 from fatmcgav/fix_intake_failure
Browse files Browse the repository at this point in the history
Fix intake failure for variable_scope
  • Loading branch information
Gavin Williams committed Feb 6, 2020
2 parents 725afd6 + dcf1d89 commit 278f0c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifests/package.pp
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@

exec { 'remove_plugin_dir':
refreshonly => true,
command => "rm -rf ${elasticsearch::_plugindir}",
command => "rm -rf ${::elasticsearch::_plugindir}",
}


Expand Down
2 changes: 1 addition & 1 deletion manifests/plugin.pp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
plugin_dir => $::elasticsearch::_plugindir,
plugin_path => $module_dir,
}
-> file { "${elasticsearch::_plugindir}/${_module_dir}":
-> file { "${::elasticsearch::_plugindir}/${_module_dir}":
ensure => $_file_ensure,
mode => 'o+Xr',
recurse => true,
Expand Down

0 comments on commit 278f0c5

Please sign in to comment.