community.general.locale_gen 模块 – 创建或删除区域设置
注意
此模块是 community.general 集合(版本 10.1.0)的一部分。
如果您正在使用 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。
要在 playbook 中使用它,请指定:community.general.locale_gen
。
概要
通过编辑 /etc/locale.gen 并调用 locale-gen 来管理区域设置。
参数
参数 |
注释 |
---|---|
区域设置的名称和编码,例如 在 community.general 9.3.0 之前,这是一个字符串。使用字符串仍然有效。 |
|
区域设置是否应存在。 选择
|
属性
属性 |
支持 |
描述 |
---|---|---|
支持: 完全 |
可以在 |
|
支持: 无 |
当处于 diff 模式时,将返回有关已更改的内容(或在 |
注意
注意
此模块不支持基于 RHEL 的系统。
示例
- name: Ensure a locale exists
community.general.locale_gen:
name: de_CH.UTF-8
state: present
- name: Ensure multiple locales exist
community.general.locale_gen:
name:
- en_GB.UTF-8
- nl_NL.UTF-8
state: present