From c76082d0ec409841c412b7da3530ea9225efefe1 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 16 Sep 2014 14:58:29 -0700 Subject: [PATCH] Unattended upgrades erb expects list of origins Was only passing in a single string to the template but it expects a list of strings. Change the type of the origin passed in to list of string to fix this issue. Change-Id: I5bf4207b54ad7d6a13c240005dae6f685e544b6c --- modules/openstack_project/manifests/template.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openstack_project/manifests/template.pp b/modules/openstack_project/manifests/template.pp index cb2391d3d7..f6763d8dea 100644 --- a/modules/openstack_project/manifests/template.pp +++ b/modules/openstack_project/manifests/template.pp @@ -19,7 +19,7 @@ class openstack_project::template ( include snmpd if $automatic_upgrades == true { class { 'openstack_project::automatic_upgrades': - origins => "Puppetlabs:${lsbdistcodename}", + origins => ["Puppetlabs:${lsbdistcodename}"], } }