diff --git a/apache/manifests/debian.pp b/apache/manifests/debian.pp index 8fcccc4..41e6181 100644 --- a/apache/manifests/debian.pp +++ b/apache/manifests/debian.pp @@ -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="") { diff --git a/apache/manifests/init.pp b/apache/manifests/init.pp index 3b9d080..07fcbb6 100644 --- a/apache/manifests/init.pp +++ b/apache/manifests/init.pp @@ -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: diff --git a/apache/manifests/redhat.pp b/apache/manifests/redhat.pp index 7ec16f7..178ef45 100644 --- a/apache/manifests/redhat.pp +++ b/apache/manifests/redhat.pp @@ -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, - } - } } }