This file is indexed.

/usr/share/doc/cdist/html/_sources/man7/cdist-type__locale_system.txt is in cdist-doc 4.4.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
cdist-type__locale_system(7)
============================

NAME
----
cdist-type__locale_system - Set system-wide locale


DESCRIPTION
-----------
This cdist type allows you to modify system-wide locale.
The name of the locale category is given as the object id
(usually you are probably interested in using LANG).


OPTIONAL PARAMETERS
-------------------

state
    present or absent, defaults to present.
    If present, sets the locale category to the given value.
    If absent, removes the locale category from the system file.

value
    The value for the locale category.
    Defaults to en_US.UTF-8.


EXAMPLES
--------

.. code-block:: sh

    # Set LANG to en_US.UTF-8
    __locale_system LANG

    # Same as above, but more explicit
    __locale_system LANG --value en_US.UTF-8

    # Set category LC_MESSAGES to de_CH.UTF-8
    __locale_system LC_MESSAGES --value de_CH.UTF-8

    # Remove setting for LC_ALL
    __locale_system LC_ALL --state absent



SEE ALSO
--------
:strong:`locale`\ (1), :strong:`localedef`\ (1), :strong:`cdist-type__locale`\ (7)


AUTHORS
-------
| Steven Armstrong <steven-cdist--@--armstrong.cc>
| Carlos Ortigoza <carlos.ortigoza--@--ungleich.ch>
| Nico Schottelius <nico.schottelius--@--ungleich.ch>


COPYING
-------
Copyright \(C) 2016 Nico Schottelius. Free use of this software is
granted under the terms of the GNU General Public License version 3 or
later (GPLv3+).