summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/configs/modules/locale.yaml
blob: af5ad6364c28c01fe2a7e2a5cd3f38c95a2219a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# Set locale to non-default option and verify
#
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