diff options
author | Sergey Stankevich <sergey@stankevi.ch> | 2013-05-31 09:49:42 -0700 |
---|---|---|
committer | Sergey Stankevich <sergey@stankevi.ch> | 2013-05-31 09:49:42 -0700 |
commit | 9aae0a0b63657a81225a2a670c9a9c89bbed2ff4 (patch) | |
tree | f4d6975b4f7fee0d5c90f308cd43f6850f63099e /README.md | |
parent | 92519602dfe62d2305c40a34b6edbdb02372924d (diff) | |
parent | eec58589feaaafd6e3f4e8500df48f5ed833bbdf (diff) |
Merge pull request #19 from jamescarr/patch-1
Added owner and group params for virtualenv.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -70,6 +70,11 @@ Creates Python virtualenv. **distribute** — Include distribute in the virtualenv. Default: true +** owner ** - specify the owner of this virtualenv + +** group ** - specify the group for this virtualenv + + python::virtualenv { '/var/www/project1': ensure => present, version => 'system', @@ -77,6 +82,8 @@ Creates Python virtualenv. proxy => 'http://proxy.domain.com:3128', systempkgs => true, distribute => false, + owner => 'appuser', + group => 'apps', } ### python::gunicorn |