Ignore:
Timestamp:
May 9, 2010, 3:08:57 AM (14 years ago)
Author:
sebas@…
Message:

agrego la clase para colocar el logo de cta en el plymouth boot

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/puppet/modules/puppet-ltsp/manifests/classes/client.pp

    r707 r714  
     1class ltsp::client::plymouth::logocta {
     2
     3    file {
     4        "/opt/ltsp/i386/lib/plymouth/themes/ubuntu-logo/ubuntu_logo.png":
     5         mode    => 644,
     6         owner   => root,
     7         group   => root,
     8         source  => "puppet:///login_themes/plymouth/ubuntu_logo.png",
     9         notify  => Exec["ltsp_client_set_logo_en_plymouth"];
     10        "/opt/ltsp/i386/lib/plymouth/themes/ubuntu-logo/ubuntu_logo16.png":
     11         mode    => 644,
     12         owner   => root,
     13         group   => root,
     14         source  => "puppet:///login_themes/plymouth/ubuntu_logo16.png",
     15         notify  => Exec["ltsp_client_set_logo_en_plymouth"];
     16    }
     17
     18    exec { "ltsp_client_set_logo_en_plymouth":
     19       command => "chroot /opt/ltsp/i386/ update-initramfs -u",
     20       path    => "/bin:/sbin:/usr/sbin:/usr/bin",
     21       refreshonly  => true,
     22       notify  => [ Exec["ltsp-update-image"], Exec["ltsp-update-kernels"] ],
     23       before  => [ Exec["ltsp-update-image"], Exec["ltsp-update-kernels"] ],
     24    }
     25
     26}
     27
    128class ltsp::client::ldm::carpani_cta {
    229
     
    936         source  => "puppet:///ltsp/ldm-carpani-cta/",
    1037         recurse => "true",
    11 #         notify     => Exec["ltsp-update-image"],
    12          before     => [ Exec["set_ldm_theme_to_carpani_cta"]  ],
     38         notify  => Exec["set_ldm_theme_to_carpani_cta"],
     39         before  => [ Exec["set_ldm_theme_to_carpani_cta"]  ],
    1340    }
    1441
Note: See TracChangeset for help on using the changeset viewer.