Codebase list puppet-module-gnocchi / 6da581f
Adapt to new type validation in puppetlabs-apache The puppetlabs-apache module is enforcing more strict data type validation[1]. This change updates the default values to adapt to that change. [1] https://github.com/puppetlabs/puppetlabs-apache/commit/f41251e336fa3e7c31c19968ccee74121cf71e47 Closes-Bug: #1983300 Depends-on: https://review.opendev.org/851652 Change-Id: Ie6310a022e9715336832865741318369bc3fa188 Takashi Kajinami 1 year, 9 months ago
2 changed file(s) with 9 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
4949 #
5050 # [*priority*]
5151 # (optional) The priority for the vhost.
52 # Defaults to '10'
52 # Defaults to 10
5353 #
5454 # [*threads*]
5555 # (optional) The number of threads for the vhost.
7171 #
7272 # [*access_log_file*]
7373 # The log file name for the virtualhost.
74 # Optional. Defaults to false.
74 # Optional. Defaults to undef.
7575 #
7676 # [*access_log_format*]
7777 # The log format for the virtualhost.
78 # Optional. Defaults to false.
78 # Optional. Defaults to undef.
7979 #
8080 # [*error_log_file*]
8181 # The error log file name for the virtualhost.
120120 $ssl_certs_dir = undef,
121121 $wsgi_process_display_name = undef,
122122 $threads = 1,
123 $priority = '10',
124 $access_log_file = false,
125 $access_log_format = false,
123 $priority = 10,
124 $access_log_file = undef,
125 $access_log_format = undef,
126126 $error_log_file = undef,
127127 $custom_wsgi_process_options = {},
128128 $vhost_custom_fragment = undef,
88 :bind_port => 8041,
99 :group => 'gnocchi',
1010 :path => '/',
11 :priority => 10,
1112 :servername => facts[:fqdn],
1213 :ssl => false,
1314 :threads => 1,
1920 :wsgi_script_file => 'app',
2021 :wsgi_script_source => platform_params[:wsgi_script_source],
2122 :custom_wsgi_process_options => {},
22 :access_log_file => false,
23 :access_log_format => false,
23 :access_log_file => nil,
24 :access_log_format => nil,
2425 )}
2526 end
2627