From c7566d91346ac854d0bdf1c3fb63001794d56725 Mon Sep 17 00:00:00 2001 From: Jason Clark Date: Tue, 17 Dec 2013 22:12:31 -0600 Subject: [PATCH] Fix for order statements. Concat requires strings --- manifests/resource/location.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/resource/location.pp b/manifests/resource/location.pp index bd0821fc5..bd55deec3 100644 --- a/manifests/resource/location.pp +++ b/manifests/resource/location.pp @@ -180,7 +180,7 @@ concat::fragment { "${vhost}-${priority}-${location_sanitized}": target => $config_file, content => $content_real, - order => $priority, + order => "${priority}", } } @@ -190,7 +190,7 @@ concat::fragment {"${vhost}-${ssl_priority}-${location_sanitized}-ssl": target => $config_file, content => $content_real, - order => $ssl_priority, + order => "${ssl_priority}", } }