Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: manifests/pool.pp

Issue 29447568: Noissue - Replace hypens with underscore due compatibility with parser future (Closed)
Patch Set: For comment 3 Created May 24, 2017, 6:02 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « manifests/php-pool.pp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: manifests/pool.pp
===================================================================
--- a/manifests/pool.pp
+++ b/manifests/pool.pp
@@ -1,4 +1,4 @@
-# Define : spawn-fcgi::pool
+# Define : spawn_fcgi::pool
#
# Define a spawn-fcgi pool snippet. Places all pool snippets into
# /etc/spawn-fcgi, where they will be automatically loaded
@@ -9,8 +9,8 @@
# * pool_name: set name of pool, which is used to identify config template
# Defaults to 'pool'
# * content: set the content of the pool snippet.
-# Defaults to 'template("spawn-fcgi/pool.d/$pool_name.conf.erb")',
-# Undefined loads generic 'template("spawn-fcgi/pool.d/pool.conf.erb")'
+# Defaults to 'template("spawn_fcgi/pool.d/$pool_name.conf.erb")',
+# Undefined loads generic 'template("spawn_fcgi/pool.d/pool.conf.erb")'
# * order: specifies the load order for this pool snippet.
# Defaults to "500"
# * fcgi_app: set binary to load fcgi-procs from
@@ -32,7 +32,7 @@
# Defaults to 'www-data'
#
-define spawn-fcgi::pool (
+define spawn_fcgi::pool (
$ensure = 'present',
$content = '',
$order = '500',
@@ -72,7 +72,7 @@
}
$real_content = $content ? {
- '' => template("spawn-fcgi/${real_pool_name}.erb"),
+ '' => template("spawn_fcgi/${real_pool_name}.erb"),
default => $content,
}
« no previous file with comments | « manifests/php-pool.pp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld