Skip to content
Snippets Groups Projects

Use C.UTF-8 as the default locale

Merged nl6720 requested to merge nl6720/infrastructure:C.UTF-8 into master
All threads resolved!
3 files
+ 3
5
Compare changes
  • Side-by-side
  • Inline
Files
3
  • 67f79ff7
    Use C.UTF-8 as the default locale · 67f79ff7
    nl6720 authored
    The glibc 2.35-6 package ships with the C.UTF-8 locale included which
    means there is now a usable UTF-8 locale available by default.
    
    en_US.UTF-8 will still be generated because PostgreSQL clusters are
    created with that locale. Migrating the clusters to C.UTF-8 is
    possible, but that requires dumping and recreating them.
@@ -20,7 +20,7 @@
| sed 's#^127.0.0.1#{{ inventory_hostname }}#' \
| sort
environment:
LC_COLLATE: C # to ensure reproducible ordering
LC_COLLATE: C.UTF-8 # to ensure reproducible ordering
args:
executable: /bin/bash
register: known_hosts
Loading