Skip to content

Commit 8bcfb17

Browse files
committed
fixed typo/indentation in gunicorn.pp, update readme for module install
1 parent d8cd414 commit 8bcfb17

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ git submodule add https://github.com/stankevich/puppet-python.git /path/to/pytho
3434
OR
3535

3636
``` shell
37-
puppet module install stankevich-python
37+
puppet module install puppet-python
3838
```
3939

4040
## Usage

REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ The following parameters are available in the `python::gunicorn` defined type.
325325

326326
##### `ensure`
327327

328-
Data type: `Enum['present', 'abesent']`
328+
Data type: `Enum['present', 'absent']`
329329

330330

331331

manifests/gunicorn.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# }
3535
#
3636
define python::gunicorn (
37-
Enum['present', 'abesent'] $ensure = present,
37+
Enum['present', 'absent'] $ensure = present,
3838
$config_dir = '/etc/gunicorn.d',
3939
$manage_config_dir = false,
4040
$virtualenv = false,
@@ -51,7 +51,7 @@
5151
$access_log_format = false,
5252
$accesslog = false,
5353
$errorlog = false,
54-
$log_level = 'error',
54+
$log_level = 'error',
5555
$template = 'python/gunicorn.erb',
5656
$args = [],
5757
) {

0 commit comments

Comments
 (0)