From f2a1f93bbd5485631289f95b7144f5f6187bc7b1 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Thu, 10 Mar 2016 10:56:50 -0500 Subject: [PATCH] Add apache2-utils package to api server This commit adds the missing apache2-utils package to the api server. The apache2 startup (because of mod_cache I guess) is requiring the use of htcacheclean. However, it's not present on the system. By installing it, this should fix the issue. Change-Id: I6bf1790b0511a0006408144fb2f98ec2a9896825 --- manifests/api.pp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/manifests/api.pp b/manifests/api.pp index 08f5664..3e08852 100644 --- a/manifests/api.pp +++ b/manifests/api.pp @@ -51,6 +51,10 @@ class openstack_health::api( require => Class['::python'], } + package {'apache2-utils': + ensure => present, + } + exec { 'requirements': command => "${virtualenv_dir}/bin/pip install -U -r ${source_dir}/requirements.txt", require => Python::Virtualenv[$virtualenv_dir],