Last change
on this file since 600 was
600,
checked in by sebas@…, 15 years ago
|
nuevo modulo puppet para manejar el escritorio, gnome, tb, ff, oo
|
File size:
1.1 KB
|
Line | |
---|
1 | # copyright albertorosenberg @ cta.org.ar |
---|
2 | # copyright sebas @ cta.org.ar |
---|
3 | # Licence: GPL |
---|
4 | # |
---|
5 | |
---|
6 | class 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 | |
---|
23 | class 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.