blob: d2565ef6e37299451892931db1d1968237fb8042 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | class nodo::subsystem::gdm::disabled inherits nodo::subsystem::gdm {
  File['/usr/share/gdm/themes/dasUberMini', '/usr/share/gdm/themes/Tuxtastic',
       '/usr/share/gdm/themes/crunchbang', '/etc/gdm/gdm.conf' ] {
    ensure => absent,
  }
  Exec['/usr/sbin/dpkg-reconfigure gdm'] {
    command => '/bin/true',
  }
  Service['gdm'] {
    ensure => stopped,
  }
  Package['gdm'] {
    ensure => absent,
  }
}
 |