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

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

la clase para agregar el logo de cta en el boot de ubuntu

File size: 685 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         require => Package[plymouth-theme-ubuntu-logo];
15        "/lib/plymouth/themes/ubuntu-logo/ubuntu_logo16.png":
16         mode    => 644,
17         owner   => root,
18         group   => root,
19         source  => "puppet:///login_themes/plymouth/ubuntu_logo16.png",
20         require => Package[plymouth-theme-ubuntu-logo];
21    }
22}
Note: See TracBrowser for help on using the repository browser.