Skip to content

Commit

Permalink
Merge pull request #1043 from bastelfreak/http_cfg_prepend
Browse files Browse the repository at this point in the history
change http_cfg_prepend default false->undef
  • Loading branch information
hunner authored Mar 8, 2017
2 parents 251d0e2 + a41736c commit 55f9e3b
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
$gzip_proxied = 'off',
$gzip_types = undef,
$gzip_vary = 'off',
$http_cfg_prepend = false,
$http_cfg_prepend = undef,
$http_cfg_append = undef,
$http_tcp_nodelay = 'on',
$http_tcp_nopush = 'off',
Expand Down Expand Up @@ -217,17 +217,6 @@
}
validate_string($proxy_buffers)
validate_string($proxy_buffer_size)
if ($http_cfg_prepend != false) {
if !(is_hash($http_cfg_prepend) or is_array($http_cfg_prepend)) {
fail('$http_cfg_prepend must be either a hash or array')
}
}

if ($nginx_cfg_prepend != false) {
if !(is_hash($nginx_cfg_prepend) or is_array($nginx_cfg_prepend)) {
fail('$nginx_cfg_prepend must be either a hash or array')
}
}

if !(is_string($http_access_log) or is_array($http_access_log)) {
fail('$http_access_log must be either a string or array')
Expand Down

0 comments on commit 55f9e3b

Please sign in to comment.