Commit 60e49a908b8066187aa5fbc0821cf9b1f674237c

Authored by Sergio Oliveira
1 parent 8d6f24fc

adding java as dep

puppet/modules/colab/manifests/requirements.pp
@@ -42,7 +42,7 @@ class colab::requirements { @@ -42,7 +42,7 @@ class colab::requirements {
42 provider => pip, 42 provider => pip,
43 require => [Package['python-pip'], Package['python-dev'], Package['build-essential']], 43 require => [Package['python-pip'], Package['python-dev'], Package['build-essential']],
44 } 44 }
45 - 45 +
46 # links virtualenvwrapper to load automaticaly 46 # links virtualenvwrapper to load automaticaly
47 file { '/etc/bash_completion.d/virtualenvwrapper.sh': 47 file { '/etc/bash_completion.d/virtualenvwrapper.sh':
48 ensure => link, 48 ensure => link,
@@ -58,7 +58,7 @@ class colab::requirements { @@ -58,7 +58,7 @@ class colab::requirements {
58 package { 'python-dev': 58 package { 'python-dev':
59 ensure => installed, 59 ensure => installed,
60 } 60 }
61 - 61 +
62 # req by gvent 62 # req by gvent
63 package { 'libevent-dev': 63 package { 'libevent-dev':
64 ensure => installed, 64 ensure => installed,
@@ -83,4 +83,9 @@ class colab::requirements { @@ -83,4 +83,9 @@ class colab::requirements {
83 package { 'gettext': 83 package { 'gettext':
84 ensure => installed, 84 ensure => installed,
85 } 85 }
  86 +
  87 + # req by solr
  88 + package { 'openjdk-7-jre':
  89 + ensure => installed,
  90 + }
86 } 91 }