source: trunk/puppet/modules/puppet-ltsp/manifests/classes/server.pp @ 712

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

agrego el exec para actualizar el kernel del cliente ltsp

File size: 757 bytes
RevLine 
[161]1class ltsp::common {
[683]2    package { [
3        "ltsp-server",
[687]4        "ltspfs"
[683]5        ]: ensure => installed }
[159]6}
7
[686]8class ltsp::buildclient {
[161]9    include ltsp::common
[232]10
[161]11    exec { "ltsp-build-client":
[683]12        command => "ltsp-build-client",
13        path    => "/bin:/sbin:/usr/sbin:/usr/bin",
[700]14        timeout => "-1",
[161]15        creates => "/opt/ltsp/i386",
[700]16        before  => [ Exec["ltsp-update-image"] ]
[161]17    }
[700]18
[712]19    exec { "ltsp-update-kernels":
20        command => "ltsp-update-kernels",
21        path    => "/bin:/sbin:/usr/sbin:/usr/bin",
22        refreshonly => true
23    }
24
[700]25    exec { "ltsp-update-image":
26        command => "chroot /opt/ltsp/i386/ apt-get clean && ltsp-update-image",
27        path    => "/bin:/sbin:/usr/sbin:/usr/bin",
28        refreshonly => true
29    }
[161]30}
Note: See TracBrowser for help on using the repository browser.