Removed useless require variables from apache module
This commit is contained in:
parent
cb47fe7e85
commit
3071640518
3 changed files with 0 additions and 14 deletions
|
@ -319,8 +319,6 @@ define apache::debian::configfile($source, $content, $http, $https) {
|
|||
# $content:
|
||||
# Content for optional module configuration.
|
||||
# See also $source.
|
||||
# $require:
|
||||
# Dependencies for the module file.
|
||||
#
|
||||
define apache::debian::a2enmod($source="", $content="") {
|
||||
|
||||
|
|
|
@ -322,8 +322,6 @@ define apache::sslsite($ipaddr="_default_", $root="", $ssl_cert="", $ssl_key="",
|
|||
# if neither $source nor $content is defined.
|
||||
# $content:
|
||||
# Config file content. See also $source.
|
||||
# $require:
|
||||
# Dependencies for the config file.
|
||||
# $http:
|
||||
# Set to false to disable config on http server.
|
||||
# $https:
|
||||
|
|
|
@ -345,11 +345,6 @@ define apache::redhat::configfile($source, $content, $http, $https) {
|
|||
source => "/etc/httpd/conf.d/${name}",
|
||||
}
|
||||
}
|
||||
if $require {
|
||||
File["/etc/httpd/conf.http.d/${name}"] {
|
||||
require => $require,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if defined(Class["apache::sslserver"]) {
|
||||
|
@ -378,11 +373,6 @@ define apache::redhat::configfile($source, $content, $http, $https) {
|
|||
source => "/etc/httpd/conf.d/${name}",
|
||||
}
|
||||
}
|
||||
if $require {
|
||||
File["/etc/httpd/conf.https.d/${name}"] {
|
||||
require => $require,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue