summaryrefslogtreecommitdiff
path: root/manifests/gunicorn.pp
diff options
context:
space:
mode:
authorJarl Stefansson <jarl@sdelements.com>2014-01-03 11:33:12 -0500
committerJarl Stefansson <jarl@sdelements.com>2014-01-03 11:33:12 -0500
commitce3562f32bdf37d78228c22038a6b9d13f073c54 (patch)
treed2b6125f12df90d892a4fc19c9f04710bd6e98f4 /manifests/gunicorn.pp
parent895eebf2a03a29959d0c4dbd613cfa345ac22b55 (diff)
parent2bab9c9a03cd01450877d897399c68f37fea0ff7 (diff)
Merge branch 'master' of https://github.com/stankevich/puppet-python
Conflicts: manifests/pip.pp manifests/virtualenv.pp Merge curly braces around variable names
Diffstat (limited to 'manifests/gunicorn.pp')
-rw-r--r--manifests/gunicorn.pp4
1 files changed, 4 insertions, 0 deletions
diff --git a/manifests/gunicorn.pp b/manifests/gunicorn.pp
index 13f4872..159afa3 100644
--- a/manifests/gunicorn.pp
+++ b/manifests/gunicorn.pp
@@ -37,6 +37,8 @@
# dir => '/var/www/project1/current',
# bind => 'unix:/tmp/gunicorn.socket',
# environment => 'prod',
+# owner => 'www-data',
+# group => 'www-data',
# template => 'python/gunicorn.erb',
# }
#
@@ -53,6 +55,8 @@ define python::gunicorn (
$dir = false,
$bind = false,
$environment = false,
+ $owner = 'www-data',
+ $group = 'www-data',
$template = 'python/gunicorn.erb',
) {