summaryrefslogtreecommitdiff
path: root/manifests/mlmmj/web/disabled.pp
blob: bf29d7b0d1d4ed0a476ad61eb5723fe60e5d54e3 (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::web::mlmmj {
  Apache::Site["$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,
  }
}