blob: e01518a1ab2703a724fa1e2d9943754a1fe6a55f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#
# Set locale to non-default option and verify
#
required_features:
- engb_locale
- locale_gen
cloud_config: |
#cloud-config
locale: en_GB.UTF-8
locale_configfile: /etc/default/locale
collect_scripts:
locale_default: |
#!/bin/bash
cat /etc/default/locale
locale_a: |
#!/bin/bash
locale -a
locale_gen: |
#!/bin/bash
cat /etc/locale.gen | grep -v '^#' | uniq
# vi: ts=4 expandtab
|