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

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

para lucid, thunderbird y openoffice no salen en espanol

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-locale-es-ar",
11        "thunderbird-gnome-support"
12        ]: ensure => installed
13    }
14
15    file { "/usr/share/thunderbird/defaults/pref/mailnews.js":
16        owner   => root,
17        group   => root,
18        mode    => 644,
19        source  => "puppet:///escritorio/tb2conf/mailnews.js",
20        require => Package["thunderbird"]
21    }
22}
23
24class escritorio::tb2::extensions {
25
26    svn::checkout { thunderbird-extension:
27        repository => "https://svn.redcta.org.ar/proyectos/redcta/trunk/thunderbird",
28        local_path => "/dist/svn-redcta",
29        local_name => "thunderbid-extensions"
30    }
31
32    file { "/usr/share/thunderbird/isp/example-isp.rdf":
33        ensure => "/dist/svn-redcta/thunderbid-extensions/agregados/sources/isp/example-isp.rdf"
34    }
35
36# TODO: hacer lo andar bien...
37#    file { "/usr/lib/thunderbird/extensions/syncmlplugin@funambol.com":
38#        ensure => "/dist/svn-redcta/thunderbid-extensions/funambol/dist"
39#    }
40}
41
Note: See TracBrowser for help on using the repository browser.