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
Copy file name to clipboardExpand all lines: README.md
+59-28Lines changed: 59 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,19 +3,36 @@
3
3
4
4
Puppet module for installing and managing python, pip, virtualenvs and Gunicorn virtual hosts.
5
5
6
+
**Version 1.1.0 Notes**
7
+
8
+
Version 1.1.0 makes several fundamental changes to the core of this module, adding some additional features, improving performance and making operations more robust in general.
9
+
10
+
Please note that everal changes have been made in v1.1.0 which make manifests incompatible with the previous version. However, modifying your manifests to suit is trivial. Please see the notes below.
11
+
12
+
Currently, the changes you need to make are as follows:
13
+
14
+
* 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.
Installs and manages Python packages from requirements file.
47
70
48
-
**virtualenv** — virtualenv to run pip in. Default: system-wide
71
+
**virtualenv** - virtualenv to run pip in. Default: system-wide
72
+
73
+
**proxy** - Proxy server to use for outbound connections. Default: none
74
+
75
+
**owner** - The owner of the virtualenv to ensure that packages are installed with the correct permissions (must be specified). Default: root
49
76
50
-
**proxy**— Proxy server to use for outbound connections. Default: none
77
+
**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