Last change
on this file since 686 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
|
Rev | Line | |
---|
[600] | 1 | # copyright albertorosenberg @ cta.org.ar |
---|
| 2 | # copyright sebas @ cta.org.ar |
---|
| 3 | # Licence: GPL |
---|
| 4 | # |
---|
| 5 | |
---|
[679] | 6 | class 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] | 16 | class 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 | |
---|
| 29 | class 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.