summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
blob: 8733a9130b5f40e20c55fc6cf8f21a8f9c9fb4d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
### debian
class apache::debian inherits apache::package {
    $config_dir = '/etc/apache2'

    file {"$vhosts_dir":
        ensure => "${config_dir}/sites-enabled",
    }
    File[default_apache_index] {
        path => '/var/www/index.html',
    }
}