Forge Home

locales

Puppet locales Module

141,655 downloads

8,830 latest version

4.6 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 2.0.0 (latest)
  • 1.1.1
  • 1.1.0
  • 1.0.6
  • 1.0.5
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
released Sep 16th 2016
This version is compatible with:
  • ,
This module has been deprecated by its author since May 11th 2021.

Start using this module

Tags: locales

Documentation

attachmentgenie/locales — version 2.0.0 Sep 16th 2016

Build Status

Puppet Locales Module

Module for configuring locales.

Installation

Clone this repo to a locales directory under your Puppet modules directory:

git clone git://github.com/attachmentgenie/attachmentgenie-locales.git locales

If you don't have a Puppet Master you can create a manifest file based on the notes below and run Puppet in stand-alone mode providing the module directory you cloned this repo to:

puppet apply --modulepath=modules test_locales.pp

Usage

If you include the locales class the standard available locale list and default locale will be build and configured:

include locales

You can override the default locale and available locales by including the module with this special syntax:

class { locales:
  default_value  => "en_US.UTF-8",
  available      => ["en_US.UTF-8 UTF-8", "en_GB.UTF-8 UTF-8"]
}