Add ruby-devel package to kale so it can build librarian-puppet properly

Really, it's the json gem's native extensions that require ruby-devel
This commit is contained in:
R. Tyler Croy 2013-07-20 13:49:30 -07:00
parent 70b886ce2c
commit 75af78b712
1 changed files with 12 additions and 0 deletions

View File

@ -7,6 +7,18 @@ node default {
include base
include ci-ssh-slave
package {
# Needed to build librarian-puppet, which is technically needed to
# bootstrap the host, but we'll keep this dependency here to express that
# this is a dependency
'ruby-devel' :
require => Package[gcc],
ensure => present;
'gcc' :
ensure => present;
}
}
Exec {