From 3754ed133313ec8bb80aed680d505f57f18ce25d Mon Sep 17 00:00:00 2001 From: Stonewall Jackson Date: Mon, 13 Feb 2023 22:24:00 -0500 Subject: locale: add docs --- roles/locale/README.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 roles/locale/README.md (limited to 'roles/locale/README.md') diff --git a/roles/locale/README.md b/roles/locale/README.md new file mode 100644 index 0000000..dd28652 --- /dev/null +++ b/roles/locale/README.md @@ -0,0 +1,31 @@ +Locale +====== + +Description +----------- + +The `locale` role sets the default system locale. + + +Variables +--------- + +This role **accepts** the following variables: + +Variable | Default | Description +---------|---------------|------------ +`locale` | `en_US.UTF-8` | Locale name + + +Usage +----- + +Example playbook: + +````yaml +- hosts: all + roles: + - role: locale + vars: + locale: en_US.UTF-8 +```` -- cgit