summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
blob: 3ea00029defd05f76e4ba780b0f608c999b80970 (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 => '/etc/apache2/sites-enabled/',
    }
    File[default_apache_index] {
        path => '/var/www/index.html',
    }
}