Skip to content
This repository has been archived by the owner on Jun 5, 2020. It is now read-only.

Fix for Ubuntu 16.04 #85

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@
$ruby_package = 'ruby'
$rubygems_package = 'rubygems'
}
'14.04': {
'14.04', '16.04': {
#Ubuntu 14.04 changed ruby/rubygems to be all in one package. Specifying these as defaults will permit the module to behave as anticipated.
$bundler_ensure = 'installed'
$ruby_package = 'ruby'
$rubygems_package = 'ruby1.9.1-full'
$rubygems_package = undef
}
default: {
$bundler_ensure = 'installed'
Expand Down