Merge pull request #197 from elmerfud/master

Fix for order statements. Concat requires strings
This commit is contained in:
James Fryman 2013-12-17 21:06:19 -08:00
commit b61c745012

View file

@ -180,7 +180,7 @@ define nginx::resource::location (
concat::fragment { "${vhost}-${priority}-${location_sanitized}":
target => $config_file,
content => $content_real,
order => $priority,
order => "${priority}",
}
}
@ -190,7 +190,7 @@ define nginx::resource::location (
concat::fragment {"${vhost}-${ssl_priority}-${location_sanitized}-ssl":
target => $config_file,
content => $content_real,
order => $ssl_priority,
order => "${ssl_priority}",
}
}