summaryrefslogtreecommitdiff
path: root/manifests/gunicorn.pp
diff options
context:
space:
mode:
authorVik Bhatti <vik@vikbhatti.com>2014-04-08 14:50:52 +0100
committerVik Bhatti <vik@vikbhatti.com>2014-04-08 14:50:52 +0100
commit8d9ea35a00f133083e752d199a1102b00827876f (patch)
treef86cad23c5c5f842442b15a905ea3c92262cf254 /manifests/gunicorn.pp
parent275cd8672ac5a0144f4d96ba39f0db6705786fc4 (diff)
parentc3a5a8f338776255859d50f4b906642f540cb162 (diff)
Pulled from upstream
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',
) {