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

Unified Diff: README.md

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 | « no previous file | manifests/init.pp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: README.md
===================================================================
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# spawn-fcgi module #
+# spawn_fcgi module #
Author : Lars Fronius <lars@jimdo.com>
Version : 0.1
@@ -14,18 +14,18 @@
It installs an init-script, which uses worker pool configs from /etc/spawn-fcgi/
-Pool-Configuration is made by 'spawn-fcgi::pool' definition.
-There is a wrapper for php-pool definitions in 'spawn-fcgi::php-pool'
+Pool-Configuration is made by 'spawn_fcgi::pool' definition.
+There is a wrapper for php-pool definitions in 'spawn_fcgi::php_pool'
See below for details.
```
-## Class: spawn-fcgi ##
+## Class: spawn_fcgi ##
```
-This class manage spawn-fcgi installation and init.d placement.
-Use spawn-fcgi::pool or spawn-fcgi::php-pool for configuring spawn-fcgi worker pools.
+This class manage spawn_fcgi installation and init.d placement.
+Use spawn_fcgi::pool or spawn_fcgi::php_pool for configuring spawn-fcgi worker pools.
```
-## Define: spawn-fcgi::pool ##
+## Define: spawn_fcgi::pool ##
```
Defines spawn-fcgi pools. Places all pool snippets into
/etc/spawn-fcgi, where they will be automatically loaded
@@ -36,8 +36,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
@@ -59,9 +59,9 @@
Defaults to 'www-data'
```
-## Define: spawn-fcgi::php-pool ##
+## Define: spawn_fcgi::php_pool ##
```
-Define : spawn-fcgi::php-pool
+Define : spawn_fcgi::php_pool
Define a spawn-fcgi pool snippet for php worker. Places all pool snippets into
/etc/spawn-fcgi, where they will be automatically loaded.
@@ -72,8 +72,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"
* ip: set the ip the fcgi pool should listen on
@@ -93,8 +93,8 @@
```
## Sample Usage ##
```
- include spawn-fcgi
- spawn-fcgi::php-pool { "global":
+ include spawn_fcgi
+ spawn_fcgi::php_pool { "global":
ensure => present,
order => '000',
children => '15'
« no previous file with comments | « no previous file | manifests/init.pp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld