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.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.pp')
-rw-r--r-- | manifests/subsystem/lightdm.pp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/subsystem/lightdm.pp b/manifests/subsystem/lightdm.pp new file mode 100644 index 0000000..ba10159 --- /dev/null +++ b/manifests/subsystem/lightdm.pp @@ -0,0 +1,10 @@ +class nodo::subsystem::lightdm { + package { 'lightdm': + ensure => present, + } + + service { 'lightdm': + ensure => running, + require => Package['lightdm'], + } +} |