From 2dfd6ee26ae7cbfa05c74dc8ab4f6214fdb19095 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Wed, 25 Jun 2014 10:24:30 -0700 Subject: [PATCH] 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 --- manifests/watchdog.pp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/manifests/watchdog.pp b/manifests/watchdog.pp index 993b7e5..ff61a05 100644 --- a/manifests/watchdog.pp +++ b/manifests/watchdog.pp @@ -22,6 +22,9 @@ class logstash::watchdog ( package { 'jq': ensure => present, } + package { 'curl': + ensure => present, + } file { '/usr/local/bin/logstash-watchdog': ensure => present,