diff --git a/manifests/resource/location.pp b/manifests/resource/location.pp index 01e0446..115f5b7 100644 --- a/manifests/resource/location.pp +++ b/manifests/resource/location.pp @@ -379,7 +379,6 @@ define nginx::resource::location ( $location_md5 = md5($location) if ($ssl_only != true) { concat::fragment { "${vhost_sanitized}-${priority}-${location_md5}": - ensure => $ensure_real, target => $config_file, content => join([ template('nginx/vhost/location_header.erb'), @@ -395,7 +394,6 @@ define nginx::resource::location ( $ssl_priority = $priority + 300 concat::fragment { "${vhost_sanitized}-${ssl_priority}-${location_md5}-ssl": - ensure => $ensure_real, target => $config_file, content => join([ template('nginx/vhost/location_header.erb'), diff --git a/manifests/resource/upstream/member.pp b/manifests/resource/upstream/member.pp index 60bac7b..0539f5d 100644 --- a/manifests/resource/upstream/member.pp +++ b/manifests/resource/upstream/member.pp @@ -52,7 +52,6 @@ define nginx::resource::upstream::member ( # Uses: $server, $port, $upstream_fail_timeout concat::fragment { "${upstream}_upstream_member_${name}": - ensure => $ensure_real, target => "${::nginx::config::conf_dir}/conf.d/${upstream}-upstream.conf", order => 40, content => template('nginx/conf.d/upstream_member.erb'),