File tree Expand file tree Collapse file tree 7 files changed +80
-3
lines changed Expand file tree Collapse file tree 7 files changed +80
-3
lines changed Original file line number Diff line number Diff line change
1
+ fixtures :
2
+ repositories :
3
+ stdlib : " git://github.com/puppetlabs/puppetlabs-stdlib.git"
4
+ apache :
5
+ repo : " git://github.com/puppetlabs/puppetlabs-apache.git"
6
+ puppetdb :
7
+ repo : " git://github.com/puppetlabs/puppetlabs-puppetdb.git"
8
+ ref : " 4.3.0"
9
+ inifile : " git://github.com/puppetlabs/puppetlabs-inifile.git"
10
+ concat : " git://github.com/ripienaar/puppet-concat.git"
11
+ file_concat :
12
+ repo : ' git://github.com/electrical/puppet-lib-file_concat.git'
13
+ apt :
14
+ repo : " git://github.com/puppetlabs/puppetlabs-apt"
15
+ ref : " 2.2.0"
16
+ symlinks :
17
+ puppet : " #{source_dir}"
Original file line number Diff line number Diff line change
1
+ pkg /*
2
+ spec /fixtures /*
3
+ Gemfile.lock
4
+ * .swp
5
+ .bundle /
6
+ .rspec_system /
7
+ vendor /
8
+ .vagrant
Original file line number Diff line number Diff line change
1
+ ---
2
+ default_set : ' debian-70rc1-x64'
3
+ sets :
4
+ ' centos-59-x64 ' :
5
+ nodes :
6
+ " main.foo.vm " :
7
+ prefab : ' centos-59-x64'
8
+ ' centos-64-x64 ' :
9
+ nodes :
10
+ " main.foo.vm " :
11
+ prefab : ' centos-64-x64'
12
+ ' fedora-18-x64 ' :
13
+ nodes :
14
+ " main.foo.vm " :
15
+ prefab : ' fedora-18-x64'
16
+ ' debian-607-x64 ' :
17
+ nodes :
18
+ " main.foo.vm " :
19
+ prefab : ' debian-607-x64'
20
+ ' debian-70rc1-x64 ' :
21
+ nodes :
22
+ " main.foo.vm " :
23
+ prefab : ' debian-70rc1-x64'
24
+ ' ubuntu-server-10044-x64 ' :
25
+ nodes :
26
+ " main.foo.vm " :
27
+ prefab : ' ubuntu-server-10044-x64'
28
+ ' ubuntu-server-12042-x64 ' :
29
+ nodes :
30
+ " main.foo.vm " :
31
+ prefab : ' ubuntu-server-12042-x64'
Original file line number Diff line number Diff line change
1
+ language : ruby
2
+ bundler_args : --without system_tests
3
+ rvm :
4
+ - 1.9.3
5
+ - 2.0.0
6
+ script : " bundle exec rake test"
7
+ env :
8
+ matrix :
9
+ - PUPPET_GEM_VERSION="~> 3.7.0"
10
+ - PUPPET_GEM_VERSION="~> 3.7.0" FUTURE_PARSER="yes" STRICT_VARIABLES="no"
11
+ - PUPPET_GEM_VERSION="~> 3.7.0" FUTURE_PARSER="yes" STRICT_VARIABLES="yes"
12
+ - PUPPET_GEM_VERSION="~> 4.0.0"
13
+ - PUPPET_GEM_VERSION="~> 4.0.0" STRICT_VARIABLES="yes"
Original file line number Diff line number Diff line change 513
513
value => $serialization_format ,
514
514
}
515
515
}
516
- }
516
+ }
Original file line number Diff line number Diff line change 101
101
$passenger_max_requests = 10000,
102
102
$passenger_stat_throttle_rate = 30,
103
103
$passenger_root = undef ,
104
+ $passenger_disable_mod_status = true ,
104
105
$serialization_format = undef ,
105
106
$serialization_package = undef ,
106
107
) inherits puppet::params {
159
160
passenger_max_requests => $passenger_max_requests ,
160
161
passenger_stat_throttle_rate => $passenger_stat_throttle_rate ,
161
162
passenger_root => $passenger_root ,
163
+ <<<<<<< HEAD
164
+ =======
165
+ passenger_disable_mod_status => $passenger_disable_mod_status ,
166
+ >>>>>>> ac41fc3fa574aff597dfb850595fefad4778ad56
162
167
} ->
163
168
Anchor[' puppet::master::end' ]
164
169
Original file line number Diff line number Diff line change 50
50
$passenger_max_requests = 0,
51
51
$passenger_stat_throttle_rate = 10,
52
52
$passenger_root,
53
+ $passenger_disable_mod_status = true ,
53
54
){
54
55
55
56
class { 'apache' :
61
62
trace_enable => ' Off' ,
62
63
}
63
64
64
- apache::mod { 'status' : package_ensure => ' absent' }
65
+ if $passenger_disable_mod_status {
66
+ apache::mod { 'status' : package_ensure => ' absent' }
67
+ }
65
68
66
69
include puppet::params
67
70
class { 'apache::mod::passenger' :
199
202
value => ' SSL_CLIENT_VERIFY' ,
200
203
require => File [$puppet_conf ],
201
204
}
202
- }
205
+ }
You can’t perform that action at this time.
0 commit comments