summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSergey Stankevich <sergey.stankevich@gmail.com>2012-11-08 07:12:03 -0500
committerSergey Stankevich <sergey.stankevich@gmail.com>2012-11-08 07:12:03 -0500
commit8fb868d5aa7bbe4d19f83367ba86d4ac4deb6d25 (patch)
treeef8d16bf45678750c60496fb6e6109cb902a5316 /README.md
parent63b4288450a3165cbd15e04fc9480fd16ff53885 (diff)
parent94d9ca52b531c76949bddfe45c5402ecb2586ab8 (diff)
Merge branch 'master' of github.com:stankevich/puppet-python
* 'master' of github.com:stankevich/puppet-python: updated authors. python::gunicorn - added template parameter python::virtualenv - '--system-site-packages' option python::gunicorn - removed unused/undocumented attributes.
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index 67c9d07..6289fdb 100644
--- a/README.md
+++ b/README.md
@@ -64,11 +64,14 @@ Creates Python virtualenv.
**proxy** — Proxy server to use for outbound connections. Default: none
+**systempkgs** — Copy system site-packages into virtualenv. Default: don't
+
python::virtualenv { '/var/www/project1':
ensure => present,
version => 'system',
requirements => '/var/www/project1/requirements.txt',
proxy => 'http://proxy.domain.com:3128',
+ systempkgs => true,
}
### python::gunicorn
@@ -87,6 +90,8 @@ Manages Gunicorn virtual hosts.
**environment** — Set ENVIRONMENT variable. Default: none
+**template** — Which ERB template to use. Default: python/gunicorn.erb
+
python::gunicorn { 'vhost':
ensure => present,
virtualenv => '/var/www/project1',
@@ -94,8 +99,11 @@ Manages Gunicorn virtual hosts.
dir => '/var/www/project1/current',
bind => 'unix:/tmp/gunicorn.socket',
environment => 'prod',
+ template => 'python/gunicorn.erb',
}
## Authors
[Sergey Stankevich](https://github.com/stankevich)
+[Ashley Penney](https://github.com/apenney)
+[Marc Fournier](https://github.com/mfournier)