blob: a77109353651e966ab7a1ba0cafb6862090180a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
#
# Copyright (C) 2025-2026 Maria Lisina
# SPDX-License-Identifier: Apache-2.0
#
# locale configuration
set -e
cat << EOF > /etc/profile.d/10locale.sh
export LANG=en_US.UTF-8
EOF
|