11 lines
264 B
Bash
11 lines
264 B
Bash
#!/bin/bash
|
|
#shellcheck disable=SC2154
|
|
|
|
ln -sf "/usr/share/zoneinfo/$tz" /etc/localtime
|
|
hwclock --systohc
|
|
|
|
(IFS='|'; sed -Ei "/^#(${locales[*]})\.UTF-8/s/#//" /etc/locale.gen)
|
|
locale-gen
|
|
echo "LANG=$lang.UTF-8" > /etc/locale.conf
|
|
|
|
echo "$hostname" > /etc/hostname
|