forked from ungleich-public/cdist
[type/__localedef] Externalise functions to separate files
This commit is contained in:
parent
c1c60e3374
commit
575bb62dc5
3 changed files with 30 additions and 24 deletions
5
cdist/conf/type/__localedef/files/lib/glibc.sh
Normal file
5
cdist/conf/type/__localedef/files/lib/glibc.sh
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# -*- mode: sh; indent-tabs-mode: t -*-
|
||||||
|
|
||||||
|
gnu_normalize_codeset() {
|
||||||
|
echo "$*" | tr -cd '[:alnum:]' | tr '[:upper:]' '[:lower:]'
|
||||||
|
}
|
20
cdist/conf/type/__localedef/files/lib/locale.sh
Normal file
20
cdist/conf/type/__localedef/files/lib/locale.sh
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# -*- mode: sh; indent-tabs-mode:t -*-
|
||||||
|
|
||||||
|
parse_locale() {
|
||||||
|
# This function will split locales into their parts. Locale strings are
|
||||||
|
# usually of the form: [language[_territory][.codeset][@modifier]]
|
||||||
|
# For simplicity, language and territory are not separated by this function.
|
||||||
|
# Old Linux systems were also using "english" or "german" as locale strings.
|
||||||
|
# Usage: parse_locale locale_str lang_var codeset_var modifier_var
|
||||||
|
eval "${2:?}"="$(expr "$1" : '\([^.@]*\)')"
|
||||||
|
eval "${3:?}"="$(expr "$1" : '[^.]*\.\([^@]*\)')"
|
||||||
|
eval "${4:?}"="$(expr "$1" : '.*@\(.*\)$')"
|
||||||
|
}
|
||||||
|
|
||||||
|
format_locale() {
|
||||||
|
# Usage: format_locale language codeset modifier
|
||||||
|
printf '%s' "$1"
|
||||||
|
test -z "$2" || printf '.%s' "$2"
|
||||||
|
test -z "$3" || printf '@%s' "$3"
|
||||||
|
printf '\n'
|
||||||
|
}
|
|
@ -21,6 +21,11 @@
|
||||||
# Manage system locales using localedef(1).
|
# Manage system locales using localedef(1).
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# shellcheck source=cdist/conf/type/__localedef/files/lib/locale.sh
|
||||||
|
. "${__type:?}/files/lib/locale.sh"
|
||||||
|
# shellcheck source=cdist/conf/type/__localedef/files/lib/glibc.sh
|
||||||
|
. "${__type:?}/files/lib/glibc.sh"
|
||||||
|
|
||||||
state_is=$(cat "${__object:?}/explorer/state")
|
state_is=$(cat "${__object:?}/explorer/state")
|
||||||
state_should=$(cat "${__object:?}/parameter/state")
|
state_should=$(cat "${__object:?}/parameter/state")
|
||||||
|
|
||||||
|
@ -46,30 +51,6 @@ then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
parse_locale() {
|
|
||||||
# This function will split locales into their parts. Locale strings are
|
|
||||||
# usually of the form: [language[_territory][.codeset][@modifier]]
|
|
||||||
# For simplicity, language and territory are not separated by this function.
|
|
||||||
# Old Linux systems were also using "english" or "german" as locale strings.
|
|
||||||
# Usage: parse_locale locale_str lang_var codeset_var modifier_var
|
|
||||||
eval "${2:?}"="$(expr "$1" : '\([^.@]*\)')"
|
|
||||||
eval "${3:?}"="$(expr "$1" : '[^.]*\.\([^@]*\)')"
|
|
||||||
eval "${4:?}"="$(expr "$1" : '.*@\(.*\)$')"
|
|
||||||
}
|
|
||||||
|
|
||||||
format_locale() {
|
|
||||||
# Usage: format_locale language codeset modifier
|
|
||||||
printf '%s' "$1"
|
|
||||||
test -z "$2" || printf '.%s' "$2"
|
|
||||||
test -z "$3" || printf '@%s' "$3"
|
|
||||||
printf '\n'
|
|
||||||
}
|
|
||||||
|
|
||||||
gnu_normalize_codeset() {
|
|
||||||
echo "$*" | tr -cd '[:alnum:]' | tr '[:upper:]' '[:lower:]'
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
: "${lang=}" "${codeset=}" "${modifier=}" # declare variables for shellcheck
|
: "${lang=}" "${codeset=}" "${modifier=}" # declare variables for shellcheck
|
||||||
parse_locale "${locale}" lang codeset modifier
|
parse_locale "${locale}" lang codeset modifier
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue