Remove wheezy-supporting cruft
[mirror/dsa-puppet.git] / modules / apache2 / manifests / site.pp
index 708e6fa..dc9b1ce 100644 (file)
@@ -1,14 +1,20 @@
 define apache2::site (
-       $config = undef,
-       $template = undef,
-       $ensure = present,
-       $site = undef
+       $source=undef,
+       $content=undef,
+       $ensure=present,
+       $site=undef
 ) {
 
        include apache2
 
-       if ! ($config or $template) {
-               err ( "No configuration found for ${name}" )
+       case $ensure {
+               present: {
+                       if ! ($source or $content) {
+                               fail ( "No configuration found for ${name}" )
+                       }
+               }
+               absent:  {}
+               default: { fail ( "Unknown ensure value: '$ensure'" ) }
        }
 
        if $site {
@@ -21,28 +27,42 @@ define apache2::site (
 
        $link_target = $ensure ? {
                present => $target,
-               absent  => absent,
-               default => err ( "Unknown ensure value: '$ensure'" ),
+               absent  => absent
        }
 
-       if $template {
+       if $content {
                file { $target:
                        ensure  => $ensure,
-                       content => template($template),
+                       content => $content,
                        require => Package['apache2'],
-                       notify  => Service['apache2'],
+                       notify  => Exec['service apache2 reload'],
                }
        } else {
                file { $target:
                        ensure  => $ensure,
-                       source  => $config,
+                       source  => $source,
                        require => Package['apache2'],
-                       notify  => Service['apache2'],
+                       notify  => Exec['service apache2 reload'],
                }
        }
 
+       $symlink = "/etc/apache2/sites-enabled/${name}.conf"
+
        file { "/etc/apache2/sites-enabled/${name}":
-               ensure => $link_target,
-               notify => Service['apache2'],
+               ensure => absent,
+               notify  => Exec['service apache2 reload'],
+       }
+
+       if $ensure == present {
+               file { $symlink:
+                       ensure => link,
+                       target => $link_target,
+                       notify  => Exec['service apache2 reload'],
+               }
+       } else {
+               file { $symlink:
+                       ensure => absent,
+                       notify  => Exec['service apache2 reload'],
+               }
        }
 }