summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorFotis Gimian <fgimiansoftware@gmail.com>2013-06-04 09:36:33 +1000
committerFotis Gimian <fgimiansoftware@gmail.com>2013-06-04 09:36:33 +1000
commit01bf2791ecadfbb954b947fefa8b15ca0c0b9947 (patch)
treed8834cafc4c4b203071f96fa9b627ad8a2cb3844 /manifests
parent5132cf1798d862e28f9c9355a2e01a96f585f28f (diff)
Amended all documentation and updated version to 1.1.0
Diffstat (limited to 'manifests')
-rw-r--r--manifests/pip.pp7
-rw-r--r--manifests/requirements.pp7
-rw-r--r--manifests/virtualenv.pp10
3 files changed, 24 insertions, 0 deletions
diff --git a/manifests/pip.pp b/manifests/pip.pp
index 3940374..a9805d3 100644
--- a/manifests/pip.pp
+++ b/manifests/pip.pp
@@ -13,9 +13,15 @@
# [*url*]
# URL to install from. Default: none
#
+# [*owner*]
+# The owner of the virtualenv being manipulated. Default: root
+#
# [*proxy*]
# Proxy server to use for outbound connections. Default: none
#
+# [*environment*]
+# Additional environment variables required to install the packages. Default: none
+#
# === Examples
#
# python::pip { 'flask':
@@ -26,6 +32,7 @@
# === Authors
#
# Sergey Stankevich
+# Fotis Gimian
#
define python::pip (
$ensure = present,
diff --git a/manifests/requirements.pp b/manifests/requirements.pp
index 3019a46..789c0d3 100644
--- a/manifests/requirements.pp
+++ b/manifests/requirements.pp
@@ -13,6 +13,12 @@
# [*proxy*]
# Proxy server to use for outbound connections. Default: none
#
+# [*owner*]
+# The owner of the virtualenv being manipulated. Default: root
+#
+# [*group*]
+# The group relating to the virtualenv being manipulated. Default: root
+#
# === Examples
#
# python::requirements { '/var/www/project1/requirements.txt':
@@ -24,6 +30,7 @@
#
# Sergey Stankevich
# Ashley Penney
+# Fotis Gimian
#
define python::requirements (
$requirements = $name,
diff --git a/manifests/virtualenv.pp b/manifests/virtualenv.pp
index 684a417..f45678b 100644
--- a/manifests/virtualenv.pp
+++ b/manifests/virtualenv.pp
@@ -22,6 +22,15 @@
# [*distribute*]
# Include distribute in the virtualenv. Default: true
#
+# [*owner*]
+# The owner of the virtualenv being manipulated. Default: root
+#
+# [*group*]
+# The group relating to the virtualenv being manipulated. Default: root
+#
+# [*index*]
+# Base URL of Python package index. Default: none (http://pypi.python.org/simple/)
+#
# === Examples
#
# python::virtualenv { '/var/www/project1':
@@ -38,6 +47,7 @@
# Sergey Stankevich
# Ashley Penney
# Marc Fournier
+# Fotis Gimian
#
define python::virtualenv (
$ensure = present,