You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Puppet module for installing and managing python, pip, virtualenvs and Gunicorn virtual hosts.
4
+
This project was forked from [stankevich's Github page](https://github.com/stankevich/puppet-python)
5
+
6
+
Puppet module for installing and managing python, pip, virtualenvs and Gunicorn virtual hosts. This fork makes several fundamental changes to the core of this module, adding some additional features, improving performance and making operations more robust in general.
7
+
8
+
**Version 1.1.x Notes (fgimian fork)**
9
+
10
+
Version 1.1.x makes several fundamental changes to the core of this module, adding some additional features, improving performance and making operations more robust in general.
11
+
12
+
Please note that everal changes have been made in v1.1.x which make manifests incompatible with the previous version. However, modifying your manifests to suit is trivial. Please see the notes below.
13
+
14
+
Currently, the changes you need to make are as follows:
15
+
16
+
* All pip definitions MUST include the owner field which specifies which user owns the virtualenv that packages will be installed in. Adding this greatly improves performance and efficiency of this module.
17
+
* You must explicitly specify pip => true in the python class if you want pip installed. As such, the pip package is now independent of the dev package and so one can exist without the other.
Installs and manages Python packages from requirements file.
47
75
48
-
**virtualenv** — virtualenv to run pip in. Default: system-wide
76
+
**virtualenv** - virtualenv to run pip in. Default: system-wide
77
+
78
+
**proxy** - Proxy server to use for outbound connections. Default: none
79
+
80
+
**owner** - The owner of the virtualenv to ensure that packages are installed with the correct permissions (must be specified). Default: root
49
81
50
-
**proxy**— Proxy server to use for outbound connections. Default: none
82
+
**group**- The group that was used to create the virtualenv. This is used to create the requirements file with correct permissions if it's not present already.
0 commit comments