Install curl when logstash watchdog is used.

The logstash watchdog depends on curl and assumed that curl would just
be available. Not all cloud images are created equal and come with curl.
Be explicit about the need for curl and install it with puppet in the
watchdog manifest.

Change-Id: If90cae9a64b9f48f04b5643b643d2c83650c7d86
This commit is contained in:
Clark Boylan 2014-06-25 10:24:30 -07:00
parent d3a253c5ed
commit 2dfd6ee26a
1 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,9 @@ class logstash::watchdog (
package { 'jq':
ensure => present,
}
package { 'curl':
ensure => present,
}
file { '/usr/local/bin/logstash-watchdog':
ensure => present,