Defined Type: firefox::locale
- Defined in:
- manifests/locale.pp
Overview
Define: firefox::locale
Ensure a firefox locale is present on the system. Only needed on Debian/Ubuntu at the moment.
Parameters
- id
-
Define the country code for the locale to instal. For example use ‘fi’ for Finnish or ‘it’ for Italian.
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'manifests/locale.pp', line 13
define firefox::locale
(
String $id
)
{
include ::firefox::params
if $::osfamily == 'Debian' {
package { "firefox-locale-${id}":
ensure => installed,
name => "${::firefox::params::package_name_locale}-${id}",
require => Class['firefox::install'],
}
}
}
|