Skip to content

Commit

Permalink
Merge pull request #197 from elmerfud/master
Browse files Browse the repository at this point in the history
Fix for order statements. Concat requires strings
  • Loading branch information
James Fryman committed Dec 18, 2013
2 parents df8df80 + c7566d9 commit b61c745
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifests/resource/location.pp
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
concat::fragment { "${vhost}-${priority}-${location_sanitized}":
target => $config_file,
content => $content_real,
order => $priority,
order => "${priority}",
}
}

Expand All @@ -190,7 +190,7 @@
concat::fragment {"${vhost}-${ssl_priority}-${location_sanitized}-ssl":
target => $config_file,
content => $content_real,
order => $ssl_priority,
order => "${ssl_priority}",
}
}

Expand Down

0 comments on commit b61c745

Please sign in to comment.