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, |
} |