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
Line 
1class login_themes::gdm::carpani_cta {
2
3    debug ("installing gdm login theme carpani-cta")
4
5    package { [
6        "gdm"
7        ]: ensure => installed
8    }
9
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    }
20
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    }
29}
Note: See TracBrowser for help on using the repository browser.