Fixed deprecation warnings "Files found in modules without specifying 'modules' in file path". This will break 0.24.x client compatibility.
This commit is contained in:
parent
33be443516
commit
5475229cfd
28 changed files with 65 additions and 65 deletions
|
@ -25,7 +25,7 @@ class apache::debian::common {
|
|||
purge => true,
|
||||
force => true,
|
||||
recurse => true,
|
||||
source => "puppet:///custom/empty",
|
||||
source => "puppet:///modules/custom/empty",
|
||||
}
|
||||
|
||||
file { "/etc/apache2/envvars":
|
||||
|
@ -151,7 +151,7 @@ define apache::debian::site($aliases, $root, $redirect) {
|
|||
force => true,
|
||||
recurse => true,
|
||||
source => [ "puppet:///files/apache/sites/${site_fqdn}",
|
||||
"puppet:///custom/empty", ],
|
||||
"puppet:///modules/custom/empty", ],
|
||||
before => File["${site_conf}"],
|
||||
notify => Service["apache2"],
|
||||
}
|
||||
|
@ -276,7 +276,7 @@ define apache::debian::sslsite($root, $ssl_cert, $ssl_key, $ssl_chain) {
|
|||
force => true,
|
||||
recurse => true,
|
||||
source => [ "puppet:///files/apache/sslsites/${site_fqdn}",
|
||||
"puppet:///custom/empty", ],
|
||||
"puppet:///modules/custom/empty", ],
|
||||
before => File["${site_conf}"],
|
||||
notify => Service["apache2"],
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue