Skip to content
This repository was archived by the owner on Dec 19, 2022. It is now read-only.

Commit

Permalink
issue_41
Browse files Browse the repository at this point in the history
  • Loading branch information
jlambert121 committed Jul 16, 2015
1 parent 7508100 commit 2712117
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .fixtures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ fixtures:
wget: 'maestrodev/wget'
stdlib:
repo: "puppetlabs/stdlib"
ref: "3.2.0"
ref: "4.2.0"
symlinks:
kibana: "#{source_dir}"

4 changes: 2 additions & 2 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
# Default: 0
#
# [*legacy_service_mode*]
# Boolean.
# Boolean.
# Default: false
#
# === Examples
Expand Down Expand Up @@ -89,7 +89,7 @@
validate_absolute_path($install_path)
validate_absolute_path($tmp_dir)
validate_bool($es_preserve_host)

class { '::kibana::install': } ->
class { '::kibana::config': } ~>
class { '::kibana::service': }
Expand Down
6 changes: 3 additions & 3 deletions manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
$install_path = $::kibana::install_path,
) {

$filename = $::architecture ? {
'i386' => "kibana-${version}-linux-x86",
'amd64' => "kibana-${version}-linux-x64",
$filename = $::architecture ? {
'i386' => "kibana-${version}-linux-x86",
/(amd64|x86_64)/ => "kibana-${version}-linux-x64",
}
$service_provider = $::kibana::params::service_provider

Expand Down

0 comments on commit 2712117

Please sign in to comment.