Skip to content

Commit fdf8101

Browse files
added manage_gunicorn docs
1 parent 04bffc4 commit fdf8101

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

Modulefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name 'stankevich-python'
2-
version '1.2.0'
2+
version '1.3.0'
33

44
author 'Sergey Stankevich'
55
license 'Apache License, Version 2.0'

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ Installs and manages python, python-dev, python-virtualenv and Gunicorn.
3737

3838
**gunicorn** - Install Gunicorn. Default: false
3939

40+
**manage_gunicorn** - Allow Installation / Removal of Gunicorn. Default: true
41+
4042
class { 'python':
4143
version => 'system',
4244
dev => true,

manifests/init.pp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
# [*gunicorn*]
2020
# Install Gunicorn. Default: false
2121
#
22+
# [*manage_gunicorn*]
23+
# Allow Installation / Removal of Gunicorn. Default: true
24+
#
2225
# === Examples
2326
#
2427
# class { 'python':
@@ -39,7 +42,7 @@
3942
$dev = false,
4043
$virtualenv = false,
4144
$gunicorn = false,
42-
$manage_gunicorn = false
45+
$manage_gunicorn = true
4346
) {
4447

4548
# Module compatibility check

0 commit comments

Comments
 (0)