Skip to content

Commit

Permalink
Add missing serialization package paramaeter to master class
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenrjohnson committed May 17, 2015
1 parent 6df4fbe commit a03a0cb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions manifests/master.pp
Expand Up @@ -36,6 +36,7 @@
# ['strict_variables'] - Makes the parser raise errors when referencing unknown variables
# ['always_cache_features'] - if false (default), always try to load a feature even if a previous load failed
# ['serialization_format'] - defaults to undef, otherwise it sets the preferred_serialization_format param (currently only msgpack is supported)
# ['serialization_package'] - defaults to undef, if provided, we install this package, otherwise we fall back to the gem from 'serialization_format'
#
# Requires:
#
Expand Down Expand Up @@ -97,7 +98,8 @@
$passenger_high_performance = true,
$passenger_max_requests = 10000,
$passenger_stat_throttle_rate = 30,
$serialization_format = undef,
$serialization_format = undef,
$serialization_package = undef,
) inherits puppet::params {

anchor { 'puppet::master::begin': }
Expand Down Expand Up @@ -364,9 +366,9 @@
}
unless defined(Package['msgpack']) {
package {'msgpack':
ensure => 'latest',
ensure => 'latest',
provider => 'gem',
require => Package[$::puppet::params::ruby_dev, 'gcc'],
require => Package[$::puppet::params::ruby_dev, 'gcc'],
}
}
}
Expand Down

0 comments on commit a03a0cb

Please sign in to comment.