diff options
Diffstat (limited to 'modules/apache/manifests')
-rw-r--r-- | modules/apache/manifests/init.pp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp index db876955..7ca64922 100644 --- a/modules/apache/manifests/init.pp +++ b/modules/apache/manifests/init.pp @@ -22,6 +22,16 @@ class apache { group => root, mode => 644, } + + file { "00_default_vhosts.conf": + path => "/etc/httpd/conf/vhosts.d/00_default_vhosts.conf", + ensure => "present", + owner => root, + group => root, + mode => 644, + notify => Service['apache'], + content => template("apache/00_default_vhosts.conf") + } } class mod_php inherits base { |