Puppet Class: filebeat::install::windows
- Defined in:
- manifests/install/windows.pp
Summary
A private class that installs filebeat on WindowsOverview
filebeat::install::windows
Download and install filebeat on Windows
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'manifests/install/windows.pp', line 7
class filebeat::install::windows {
# I'd like to use chocolatey to do this install, but the package for chocolatey is
# failing for updates and seems rather unpredictable at the moment. We may revisit
# that in the future as it would greatly simplify this code and basically reduce it to
# one package resource with type => chocolatey....
$filename = regsubst($filebeat::real_download_url, '^https?.*\/([^\/]+)\.[^.].*', '\1')
$foldername = 'Filebeat'
$zip_file = join([$filebeat::tmp_dir, "${filename}.zip"], '/')
$install_folder = join([$filebeat::install_dir, $foldername], '/')
$version_file = join([$install_folder, $filename], '/')
Exec {
provider => powershell,
}
if ! defined(File[$filebeat::install_dir]) {
file { $filebeat::install_dir:
ensure => directory,
}
}
# Note: We can use archive for unzip and cleanup, thus removing the following two resources.
# However, this requires 7zip, which archive can install via chocolatey:
# https://github.com/voxpupuli/puppet-archive/blob/master/manifests/init.pp#L31
# I'm not choosing to impose those dependencies on anyone at this time...
archive { $zip_file:
source => $filebeat::real_download_url,
cleanup => false,
creates => $version_file,
proxy_server => $filebeat::proxy_address,
}
# Core editions of Windows Server do not have a shell as such, so use the Shell.Application COM object doesn't work.
# Expand-Archive is a native powershell cmdlet which ships with Powershell 5, which in turn ships with Windows 10 and
# Windows Server 2016 and newer.
if ((versioncmp($facts['os']['release']['full'], '2016') >= 0) or (versioncmp($facts['os']['release']['full'], '10') >= 0)) {
$unzip_command = "Expand-Archive ${zip_file} \"${filebeat::install_dir}\""
}
else {
$unzip_command = "\$sh=New-Object -COM Shell.Application;\$sh.namespace((Convert-Path '${filebeat::install_dir}')).Copyhere(\$sh.namespace((Convert-Path '${zip_file}')).items(), 16)" # lint:ignore:140chars
}
exec { "unzip ${filename}":
command => $unzip_command,
creates => $version_file,
require => [
File[$filebeat::install_dir],
Archive[$zip_file],
],
}
# Clean up after ourselves
file { $zip_file:
ensure => absent,
backup => false,
require => Exec["unzip ${filename}"],
}
# You can't remove the old dir while the service has files locked...
exec { "stop service ${filename}":
command => 'Set-Service -Name filebeat -Status Stopped',
creates => $version_file,
onlyif => 'if(Get-WmiObject -Class Win32_Service -Filter "Name=\'filebeat\'") {exit 0} else {exit 1}',
require => Exec["unzip ${filename}"],
}
exec { "rename ${filename}":
command => "Remove-Item '${install_folder}' -Recurse -Force -ErrorAction SilentlyContinue;Rename-Item '${filebeat::install_dir}/${filename}' '${install_folder}'", # lint:ignore:140chars
creates => $version_file,
require => Exec["stop service ${filename}"],
}
exec { "mark ${filename}":
command => "New-Item '${version_file}' -ItemType file",
creates => $version_file,
require => Exec["rename ${filename}"],
}
exec { "install ${filename}":
cwd => $install_folder,
command => './install-service-filebeat.ps1',
refreshonly => true,
subscribe => Exec["mark ${filename}"],
}
}
|