Blob Blame History Raw
From 3fc71ad0d38a3205ad8a790769353b67f32dccff Mon Sep 17 00:00:00 2001
From: Emanuele Giuseppe Esposito <eesposit@redhat.com>
Date: Thu, 10 Jun 2021 17:04:49 +0200
Subject: [PATCH] Fix issue LP: #1928167 growpart doesn't work when
 LANG=cs_CZ.UTF-8

RH-Author: Emanuele Giuseppe Esposito <eesposit@redhat.com>
RH-MergeRequest: 3: Fix issue LP: #1928167 growpart doesn't work when LANG=cs_CZ.UTF-8
RH-Commit: [1/1] e77ca8febb4171201c6c75f9420c4744ab321024
RH-Bugzilla: 1885992
RH-Acked-by: Mohamed Gamal Morsy <mmorsy@redhat.com>
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>

commit 03aa9974e7eb438b798fe95afc7cf4efe72ea73a
Author: Amy Chen <66719270+xiachen-rh@users.noreply.github.com>
Date:   Wed May 12 13:03:17 2021 +0800

    Fix issue LP: #1928167 growpart doesn't work when LANG=cs_CZ.UTF-8

Signed-off-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
---
 bin/growpart | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/growpart b/bin/growpart
index e815e4e..66a6dd2 100755
--- a/bin/growpart
+++ b/bin/growpart
@@ -181,7 +181,7 @@ get_sfdisk_version() {
 	local out oifs="$IFS" ver=""
 	[ -n "$SFDISK_VERSION" ] && return 0
 	# expected output: sfdisk from util-linux 2.25.2
-	out=$(sfdisk --version) ||
+	out=$(LANG=C sfdisk --version) ||
 		{ error "failed to get sfdisk version"; return 1; }
 	set -- $out
 	ver=$4
-- 
2.27.0