source: trunk/puppet/modules/puppet-login_themes/manifests/classes/plymouth-logocta.pp @ 711

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

agrego el exec

File size: 947 bytes
Line 
1class login_themes::plymouth::logocta {
2
3    package { [
4        "plymouth-theme-ubuntu-logo"
5        ]: ensure => installed
6    }
7
8    file {
9        "/lib/plymouth/themes/ubuntu-logo/ubuntu_logo.png":
10         mode    => 644,
11         owner   => root,
12         group   => root,
13         source  => "puppet:///login_themes/plymouth/ubuntu_logo.png",
14         notify  => Exec["set_logo_en_plymouth"],
15         require => Package[plymouth-theme-ubuntu-logo];
16        "/lib/plymouth/themes/ubuntu-logo/ubuntu_logo16.png":
17         mode    => 644,
18         owner   => root,
19         group   => root,
20         source  => "puppet:///login_themes/plymouth/ubuntu_logo16.png",
21         notify  => Exec["set_logo_en_plymouth"],
22         require => Package[plymouth-theme-ubuntu-logo];
23    }
24
25   exec { "set_logo_en_plymouth":
26       command => "update-initramfs -u",
27       path    => "/bin:/sbin:/usr/sbin:/usr/bin",
28       refreshonly  => true,
29   }
30
31}
Note: See TracBrowser for help on using the repository browser.