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

Last change on this file since 596 was 485, checked in by sebas, 14 years ago

para evitar la double declaracion del paquete thunderbird

File size: 401 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       require => Package["thunderbird"],
15      }
16}
Note: See TracBrowser for help on using the repository browser.