From 3a34d4b9ea74695dfdc4558f8441519712d846de Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Thu, 8 Jan 2015 11:19:48 +1100 Subject: [PATCH] Ensure rsyslog package present Some images on some platforms (fedora21 on rax) may not have rsyslog installed. There is some custom configuration and a restart done which assumes the presence of rsyslog. Since many other things might rely on /var/log/messages just ensure we have rsyslog installed. Change-Id: I363ed7927954ecba9f83c38604b5dba2b4ce3045 --- modules/openstack_project/manifests/template.pp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/openstack_project/manifests/template.pp b/modules/openstack_project/manifests/template.pp index 8d422d8619..88e56337bb 100644 --- a/modules/openstack_project/manifests/template.pp +++ b/modules/openstack_project/manifests/template.pp @@ -68,6 +68,10 @@ class openstack_project::template ( ensure => present, } + package { 'rsyslog': + ensure => present, + } + if ($enable_unbound) { class { 'unbound': install_resolv_conf => $install_resolv_conf