Line | |
---|
1 | class 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.