blob: 6e6eda5fc81b956b9c31cb6247414592da7d162b (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | class mail::mlmmj::web::disabled inherits mail::mlmmj::web {
  Apache::Site["${mail::mlmmj::subdomain}"] {
    ensure => absent,
  }
  Package[ 'mlmmj-php-web', 'mlmmj-php-web-admin' ] {
    ensure => absent,
  }
  File['/etc/mlmmj-php-web-admin'] {
    ensure => absent,
    force  => true,
  }
  File['/etc/mlmmj-php-web-admin/htpasswd'] {
    ensure => absent,
  }
}
 |