source: trunk/puppet/modules/thunderbird_default_config/manifests/init.pp @ 411

Last change on this file since 411 was 411, checked in by alberto, 15 years ago

nuevo modulo puppet para configurar thunderbird ticket 42 y 43

File size: 357 bytes
Line 
1# copyright <albertorosenberg @ cta.org.ar>
2# Licence: GPL
3#
4
5class thunderbird_default_config {
6
7   package { [ "thunderbird" ]: ensure => installed }
8
9   file { "/usr/share/thunderbird/defaults/pref/mailnews.js":
10       owner => root,
11       group => root,
12       mode => 644,
13       source => "puppet:///thunderbird_default_config/mailnews.js"
14      }
15}
Note: See TracBrowser for help on using the repository browser.