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,
  }
}