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 4d668437c2
commit cb8d1c805c

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,