diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2012-02-27 22:22:36 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-02-27 22:22:36 -0300 |
commit | 3f2e3ae9e2135f6b42e445020ad68e32e9d3d1b3 (patch) | |
tree | b08a68a38a8eb9296e39eee901e38b2d5743ffd6 | |
parent | c4d1b06b8fb28e9a183663d5510ab41fcd881fc2 (diff) | |
download | puppet-apache-3f2e3ae9e2135f6b42e445020ad68e32e9d3d1b3.tar.gz puppet-apache-3f2e3ae9e2135f6b42e445020ad68e32e9d3d1b3.tar.bz2 |
Package libopenssl-ruby1.8 already provided by libruby1.8
-rw-r--r-- | manifests/init.pp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index b285f03..96bd9f8 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -399,12 +399,17 @@ class apache::rails inherits apache { } # Needed by https://git.codecoop.org/projects/coquelicot - package { [ 'libsinatra-ruby1.8', 'libopenssl-ruby1.8', + package { [ 'libsinatra-ruby1.8', 'libruby1.8', 'libhaml-ruby1.8', 'liblockfile-ruby', 'libgettext-ruby1.8', 'libjson-ruby1.8' ]: ensure => installed, } + # Already provided by libruby1.8 package + package { 'libopenssl-ruby1.8': + ensure => absent, + } + module { "passenger": ensure => present, require => Package["mod_rack"], |