diff --git a/manifests/init.pp b/manifests/init.pp index 2de6ac5ed..0719b4d29 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -83,7 +83,7 @@ $gzip_proxied = 'off', $gzip_types = undef, $gzip_vary = 'off', - $http_cfg_prepend = false, + $http_cfg_prepend = undef, $http_cfg_append = false, $http_tcp_nodelay = 'on', $http_tcp_nopush = 'off', @@ -236,11 +236,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 ($http_cfg_append != false) { if !(is_hash($http_cfg_append) or is_array($http_cfg_append)) { @@ -248,12 +243,6 @@ } } - 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') }