Skip to content

Commit fb90533

Browse files
committed
rebase against master, fix spec failure
2 parents 1a3a13d + 9011e9c commit fb90533

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

manifests/master.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@
8888
$puppet_docroot = $::puppet::params::puppet_docroot,
8989
$puppet_vardir = $::puppet::params::puppet_vardir,
9090
$puppet_proxy_port = $::puppet::params::puppet_proxy_port,
91+
$puppet_conf = $::puppet::params::puppet_conf,
9192
$puppet_passenger_tempdir = false,
9293
$puppet_passenger_cfg_addon = '',
9394
$puppet_master_package = $::puppet::params::puppet_master_package,
@@ -193,7 +194,6 @@
193194
passenger_high_performance => $passenger_high_performance,
194195
passenger_max_requests => $passenger_max_requests,
195196
passenger_stat_throttle_rate => $passenger_stat_throttle_rate,
196-
197197
} ->
198198
Anchor['puppet::master::end']
199199
}

spec/classes/puppet_passenger_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
describe 'puppet::passenger', :type => :class do
44
let (:params) do
55
{
6-
:puppet_proxy_port => '8140',
6+
:puppet_proxy_port => '8140',
77
:puppet_docroot => '/etc/puppet/rack/public/',
88
:apache_serveradmin => 'root',
99
:puppet_conf => '/etc/puppet/puppet.conf',

spec/classes/puppet_repo_puppetlabs_spec.rb

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@
1515
:mirror => 'http://apt.puppetlabs.com',
1616
}
1717
end
18+
let :params do
19+
{
20+
:mirror => 'http://apt.puppetlabs.com',
21+
}
22+
end
1823
it 'should contain puppetlabs apt repos' do
1924
should contain_apt__source('puppetlabs').with(
2025
:repos => 'main',

0 commit comments

Comments
 (0)