locales

deprecated
Puppet locales Module

145,984 downloads

9,107 latest version

4.6 quality score

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:
  • Debian
    ,
    Ubuntu
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"]
}