From 81d316b2bc929eeeca6ee6a40a3a405582462e09 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Thu, 8 Jan 2015 15:20:17 +1100 Subject: [PATCH] Fix ordering of rsyslog install My previous attempt (I363ed7927954ecba9f83c38604b5dba2b4ce3045) added the rsyslog package, but did not ensure it was installed before the config update. This adds the package as a requirement of the service class, which should do it. Change-Id: I910ba1fcce141fccf3fd3e472904274e6c03fb0a --- modules/openstack_project/manifests/template.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/openstack_project/manifests/template.pp b/modules/openstack_project/manifests/template.pp index 88e56337bb..b461de83db 100644 --- a/modules/openstack_project/manifests/template.pp +++ b/modules/openstack_project/manifests/template.pp @@ -113,6 +113,7 @@ class openstack_project::template ( ensure => running, enable => true, hasrestart => true, + require => Package['rsyslog'], } $rsyslog_notify = [ Service['rsyslog'] ] }