aboutsummaryrefslogtreecommitdiffstats
path: root/roles/locale
diff options
context:
space:
mode:
Diffstat (limited to 'roles/locale')
-rw-r--r--roles/locale/README.md31
1 files changed, 31 insertions, 0 deletions
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
+````