diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/setup.pp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/manifests/setup.pp b/manifests/setup.pp index 282c892..dd37914 100644 --- a/manifests/setup.pp +++ b/manifests/setup.pp @@ -70,12 +70,14 @@ class websites::setup { ensure => present, } + # TODO: remove in the future as the default vhost already does the job # Default vhost: can just be applied on the defining host apache::site { "${apache::server_name}": server_alias => "${::domain}", docroot => "${apache::www_folder}", mpm => false, tag => 'all', + ensure => absent, } # We have to use 'zzz-error' so it will be the last matched vhost |