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:
parent
4d668437c2
commit
cb8d1c805c
@ -22,6 +22,9 @@ class logstash::watchdog (
|
||||
package { 'jq':
|
||||
ensure => present,
|
||||
}
|
||||
package { 'curl':
|
||||
ensure => present,
|
||||
}
|
||||
|
||||
file { '/usr/local/bin/logstash-watchdog':
|
||||
ensure => present,
|
||||
|
Loading…
Reference in New Issue
Block a user