From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 2/3] initscripts: readhash: Only strip quotes if they exist Date: Fri, 06 Dec 2024 16:42:16 +0000 Message-ID: <20241206164217.3840140-2-michael.tremer@ipfire.org> In-Reply-To: <20241206164217.3840140-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2513566849229995909==" List-Id: --===============2513566849229995909== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Michael Tremer --- src/initscripts/system/functions | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/initscripts/system/functions b/src/initscripts/system/functi= ons index 125aa1dc6..094e35495 100644 --- a/src/initscripts/system/functions +++ b/src/initscripts/system/functions @@ -899,7 +899,6 @@ readhash() { =20 local line while read -r line; do - # Skip Blank Lines if [[ ${line} =3D~ ^[[:space:]]*$ ]]; then continue @@ -932,8 +931,12 @@ readhash() { fi =20 # strip leading and trailing single quotes - val=3D"${val#\'}" - val=3D"${val%\'}" + case "${val}" in + '*') + val=3D"${val#\'}" + val=3D"${val%\'}" + ;; + esac =20 printf -v "${array}[${key}]" "%s" "${val}" done < "${file}" --=20 2.39.5 --===============2513566849229995909==--