source: trunk/puppet/modules/puppet-login_themes/manifests/classes/gdm-carpani-cta.pp @ 702

Last change on this file since 702 was 702, checked in by sebas@…, 14 years ago

formateo, nada mas

File size: 732 bytes
RevLine 
[461]1class login_themes::gdm::carpani_cta {
2
[554]3    debug ("installing gdm login theme carpani-cta")
[461]4
[702]5    package { [
6        "gdm"
7        ]: ensure => installed
[554]8    }
[461]9
[554]10    file {
11        "/usr/share/gdm/themes/gdm-carpani-cta":
12            ensure  => directory,
13            mode    => 644,
14            owner   => root,
15            group   => root,
16            source  => "puppet:///login_themes/gdm-carpani-cta/",
17            recurse => "true",
18            require => Package[gdm];
19    }
[461]20
[554]21    file {
22        "/etc/gdm/gdm.conf-custom":
23            content => template("login_themes/gdm.conf-custom.erb"),
24            owner   => root,
25            group   => root,
26            mode    => 644,
27            require => Package["gdm"],
28    }
[461]29}
Note: See TracBrowser for help on using the repository browser.