Commit 562d145fb919b0b37cef4db69d7964e68bcce2ae

Authored by Sergio Oliveira
1 parent 6a9a544a

Using package name and source to install punjab

By using the package name and source we avoid puppet to download Punjab
in every run.
puppet/modules/colab/manifests/requirements.pp
@@ -23,8 +23,9 @@ class colab::requirements { @@ -23,8 +23,9 @@ class colab::requirements {
23 } 23 }
24 24
25 # XMPP connection manager 25 # XMPP connection manager
26 - package { 'git+https://github.com/twonds/punjab@c96ffe4': 26 + package { 'punjab':
27 ensure => installed, 27 ensure => installed,
  28 + source => 'git+https://github.com/twonds/punjab@c96ffe4#egg=punjab',
28 provider => pip, 29 provider => pip,
29 require => Package['python-pip'], 30 require => Package['python-pip'],
30 } 31 }