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
This commit is contained in:
Ian Wienand 2015-01-08 11:19:48 +11:00
parent 9b01b63047
commit 3a34d4b9ea

View File

@ -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