diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-09-08 14:50:49 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-09-08 14:50:49 -0300 |
commit | 703111bf47f476ddbc20669ff6aeab62dcd2643a (patch) | |
tree | 3092d2f5be1fd5d5c1ede24ada7da822cac07e83 /manifests/subsystem/lightdm/disabled.pp | |
parent | 1c8b5c5a28677fc7322f8e64c757b79ffe9d7326 (diff) | |
download | puppet-nodo-703111bf47f476ddbc20669ff6aeab62dcd2643a.tar.gz puppet-nodo-703111bf47f476ddbc20669ff6aeab62dcd2643a.tar.bz2 |
Adds lightdm support for jessie
Diffstat (limited to 'manifests/subsystem/lightdm/disabled.pp')
-rw-r--r-- | manifests/subsystem/lightdm/disabled.pp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/subsystem/lightdm/disabled.pp b/manifests/subsystem/lightdm/disabled.pp new file mode 100644 index 0000000..4b9e4d2 --- /dev/null +++ b/manifests/subsystem/lightdm/disabled.pp @@ -0,0 +1,9 @@ +class nodo::subsystem::lightdm::disabled { + Package['lightdm'] { + ensure => absent, + } + + Service['lightdm'] { + ensure => stopped, + } +} |