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

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

mejor nombre de clases para thunderbird ya que pasamos a tb3

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