source: trunk/puppet/modules/puppet-escritorio/manifests/classes/tb2conf.pp @ 612

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

Arreglando problemas por usar diferentes versiones de puppet(coma en el ultimo elemento de un array y envio de multiples elemetos en vez de array )

File size: 1.1 KB
Line 
1# copyright albertorosenberg @ cta.org.ar
2# copyright sebas @ cta.org.ar
3# Licence: GPL
4#
5
6class escritorio::tb2conf {
7
8    package { [
9        "thunderbird",
10        "thunderbird-gnome-support"
11        ]: ensure => installed
12    }
13
14    file { "/usr/share/thunderbird/defaults/pref/mailnews.js":
15        owner   => root,
16        group   => root,
17        mode    => 644,
18        source  => "puppet:///escritorio/tb2conf/mailnews.js",
19        require => Package["thunderbird"]
20    }
21}
22
23class escritorio::tb2::extensions {
24
25    svn::checkout { thunderbird-extension:
26        repository => "https://svn.redcta.org.ar/proyectos/redcta/trunk/thunderbird",
27        local_path => "/dist/svn-redcta",
28        local_name => "thunderbid-extensions"
29    }
30
31    file { "/usr/share/thunderbird/isp/example-isp.rdf":
32        ensure => "/dist/svn-redcta/thunderbid-extensions/agregados/sources/isp/example-isp.rdf"
33    }
34
35# TODO: hacer lo andar bien...
36#    file { "/usr/lib/thunderbird/extensions/syncmlplugin@funambol.com":
37#        ensure => "/dist/svn-redcta/thunderbid-extensions/funambol/dist"
38#    }
39}
40
Note: See TracBrowser for help on using the repository browser.