summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Stankevich <sergey@stankevi.ch>2013-05-19 08:03:19 -0700
committerSergey Stankevich <sergey@stankevi.ch>2013-05-19 08:03:19 -0700
commit960acbe73e229076d15ecc8795fce9bd37880c19 (patch)
tree147603495b10278023de17da07038e7e338ae866
parentc3eeb5c15f83258196ac5fe1a17f5464d65c87d4 (diff)
parent26cb1fb50d87037bc5494124212bdc9165d62b34 (diff)
Merge pull request #15 from adevore/master
Fix typo from pull request #14
-rw-r--r--manifests/requirements.pp9
-rw-r--r--manifests/virtualenv.pp2
2 files changed, 6 insertions, 5 deletions
diff --git a/manifests/requirements.pp b/manifests/requirements.pp
index 3a32b0f..67d24ce 100644
--- a/manifests/requirements.pp
+++ b/manifests/requirements.pp
@@ -65,10 +65,11 @@ define python::requirements (
# SHA1 checksum to detect changes
exec { "python_requirements_check_${name}":
- command => "sha1sum ${requirements} > ${req_crc}",
- unless => "sha1sum -c ${req_crc}",
- user => $owner,
- require => File[$requirements],
+ provider => shell,
+ command => "sha1sum ${requirements} > ${req_crc}",
+ unless => "sha1sum -c ${req_crc}",
+ user => $owner,
+ require => File[$requirements],
}
exec { "python_requirements_update_${name}":
diff --git a/manifests/virtualenv.pp b/manifests/virtualenv.pp
index 9888cd2..9f9e96c 100644
--- a/manifests/virtualenv.pp
+++ b/manifests/virtualenv.pp
@@ -47,7 +47,7 @@ define python::virtualenv (
$systempkgs = false,
$distribute = true,
$owner = 'root',
- $group = 'root'
+ $group = 'root',
$index = false,
) {