Commit 562d145fb919b0b37cef4db69d7964e68bcce2ae
1 parent
6a9a544a
Exists in
master
and in
39 other branches
Using package name and source to install punjab
By using the package name and source we avoid puppet to download Punjab in every run.
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
puppet/modules/colab/manifests/requirements.pp
... | ... | @@ -23,8 +23,9 @@ class colab::requirements { |
23 | 23 | } |
24 | 24 | |
25 | 25 | # XMPP connection manager |
26 | - package { 'git+https://github.com/twonds/punjab@c96ffe4': | |
26 | + package { 'punjab': | |
27 | 27 | ensure => installed, |
28 | + source => 'git+https://github.com/twonds/punjab@c96ffe4#egg=punjab', | |
28 | 29 | provider => pip, |
29 | 30 | require => Package['python-pip'], |
30 | 31 | } | ... | ... |