From 89feffd0041a84da251506847f2d342ac55a1187 Mon Sep 17 00:00:00 2001 From: Davide Alberani Date: Sat, 20 Jul 2024 17:05:47 +0200 Subject: [PATCH] fixes #3405 always set LC_ALL=C on update scripts --- misc/update-lxcs-cron.sh | 3 +++ misc/update-lxcs.sh | 3 +++ 2 files changed, 6 insertions(+) diff --git a/misc/update-lxcs-cron.sh b/misc/update-lxcs-cron.sh index 23c44852..f0aaeb49 100644 --- a/misc/update-lxcs-cron.sh +++ b/misc/update-lxcs-cron.sh @@ -5,6 +5,9 @@ # License: MIT # https://github.com/tteck/Proxmox/raw/main/LICENSE +LC_ALL=C +export LC_ALL + echo "$(date)" excluded_containers=("$@") function update_container() { diff --git a/misc/update-lxcs.sh b/misc/update-lxcs.sh index 9167186e..94680412 100644 --- a/misc/update-lxcs.sh +++ b/misc/update-lxcs.sh @@ -5,6 +5,9 @@ # License: MIT # https://github.com/tteck/Proxmox/raw/main/LICENSE +LC_ALL=C +export LC_ALL + function header_info { clear cat <<"EOF"