From 4618ab180e039ad91f388728a2034abd2a05ed2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Roche?= Date: Tue, 18 Mar 2014 13:35:57 +0100 Subject: [PATCH] fix missing ensure on concat::fragment resources --- manifests/resource/location.pp | 2 ++ manifests/resource/mailhost.pp | 2 ++ manifests/resource/vhost.pp | 2 ++ 3 files changed, 6 insertions(+) diff --git a/manifests/resource/location.pp b/manifests/resource/location.pp index 13f287cd9..c44a67379 100644 --- a/manifests/resource/location.pp +++ b/manifests/resource/location.pp @@ -270,6 +270,7 @@ ## Create stubs for vHost File Fragment Pattern if ($ssl_only != true) { concat::fragment { "${vhost_sanitized}-${priority}-${location_sanitized}": + ensure => present, target => $config_file, content => $content_real, order => "${priority}", @@ -280,6 +281,7 @@ if ($ssl == true) { $ssl_priority = $priority + 300 concat::fragment {"${vhost_sanitized}-${ssl_priority}-${location_sanitized}-ssl": + ensure => present, target => $config_file, content => $content_real, order => "${ssl_priority}", diff --git a/manifests/resource/mailhost.pp b/manifests/resource/mailhost.pp index eaeac0e87..89e0245d7 100644 --- a/manifests/resource/mailhost.pp +++ b/manifests/resource/mailhost.pp @@ -125,6 +125,7 @@ if ($listen_port != $ssl_port) { concat::fragment { "${name}-header": + ensure => present, target => $config_file, content => template('nginx/mailhost/mailhost.erb'), order => '001', @@ -134,6 +135,7 @@ # Create SSL File Stubs if SSL is enabled if ($ssl) { concat::fragment { "${name}-ssl": + ensure => present, target => $config_file, content => template('nginx/mailhost/mailhost_ssl.erb'), order => '700', diff --git a/manifests/resource/vhost.pp b/manifests/resource/vhost.pp index 4012a76ce..453984dc2 100644 --- a/manifests/resource/vhost.pp +++ b/manifests/resource/vhost.pp @@ -423,6 +423,7 @@ if ($listen_port != $ssl_port) { concat::fragment { "${name_sanitized}-header": + ensure => present, target => $config_file, content => template('nginx/vhost/vhost_header.erb'), order => '001', @@ -432,6 +433,7 @@ # Create a proper file close stub. if ($listen_port != $ssl_port) { concat::fragment { "${name_sanitized}-footer": + ensure => present, target => $config_file, content => template('nginx/vhost/vhost_footer.erb'), order => '699',