aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/init.pp
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2012-03-25 12:20:24 +0000
committerMichael Scherer <misc@mageia.org>2012-03-25 12:20:24 +0000
commitf83e2c85a7f0d2402982942150688b7373a9d5ab (patch)
tree34d781b4e3d3f8f1c763e80aec3e90703df75cbc /modules/apache/manifests/init.pp
parent777b01260256d148a821dbb27fb25ae881b84cc6 (diff)
downloadpuppet-f83e2c85a7f0d2402982942150688b7373a9d5ab.tar
puppet-f83e2c85a7f0d2402982942150688b7373a9d5ab.tar.gz
puppet-f83e2c85a7f0d2402982942150688b7373a9d5ab.tar.bz2
puppet-f83e2c85a7f0d2402982942150688b7373a9d5ab.tar.xz
puppet-f83e2c85a7f0d2402982942150688b7373a9d5ab.zip
split some others modules in separate file
Diffstat (limited to 'modules/apache/manifests/init.pp')
-rw-r--r--modules/apache/manifests/init.pp31
1 files changed, 2 insertions, 29 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp
index de1544d0..c4645662 100644
--- a/modules/apache/manifests/init.pp
+++ b/modules/apache/manifests/init.pp
@@ -45,18 +45,6 @@ class apache {
}
}
- class mod_perl inherits base {
- package { "apache-mod_perl": }
- }
-
- class mod_fcgid inherits base {
- package { "apache-mod_fcgid": }
- }
-
- class mod_fastcgi inherits base {
- package { "apache-mod_fastcgi": }
- }
-
class mod_wsgi inherits base {
package { "apache-mod_wsgi": }
@@ -69,21 +57,6 @@ class apache {
}
}
- class mod_proxy inherits base {
- package { "apache-mod_proxy": }
- }
-
- class mod_public_html inherits base {
- package { "apache-mod_public_html": }
- }
-
- class mod_deflate inherits base {
- package { "apache-mod_deflate": }
- }
-
- class mod_geoip inherits base {
- package { "apache-mod_geoip": }
- }
define vhost_base($content = '',
$location = '/dev/null',
@@ -127,7 +100,7 @@ class apache {
}
if $enable_public_html {
- include apache::mod_public_html
+ include apache::mod::public_html
}
apache::config { "/etc/httpd/conf/vhosts.d/$filename":
@@ -207,7 +180,7 @@ class apache {
define vhost_reverse_proxy($url,
$vhost = false,
$use_ssl = false) {
- include apache::mod_proxy
+ include apache::mod::proxy
vhost_base { $name:
use_ssl => $use_ssl,
vhost => $vhost,