From 37a37a2614c6ee9eaa97fa0598450da96714bb23 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Thu, 6 Jul 2023 15:38:16 +0200 Subject: [PATCH] remove wrong NO_LOG --- usr/lib/archboot/installer/bootloader.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/lib/archboot/installer/bootloader.sh b/usr/lib/archboot/installer/bootloader.sh index c33afa144..afcffb666 100644 --- a/usr/lib/archboot/installer/bootloader.sh +++ b/usr/lib/archboot/installer/bootloader.sh @@ -35,9 +35,9 @@ _getcryptsetup() { if ! cryptsetup status "$(basename "${_ROOTDEV}")" | grep -q inactive; then if cryptsetup status "$(basename "${_ROOTDEV}")" 2>"${_NO_LOG}"; then if [[ "${_NAME_SCHEME_PARAMETER}" == "FSUUID" ]]; then - _LUKSDEV="UUID=$(${_LSBLK} UUID "$(cryptsetup status "$(basename "${_ROOTDEV}")" | grep device: | sed -e 's#device:##g')" 2>"${_NO_LOG}")" + _LUKSDEV="UUID=$(${_LSBLK} UUID "$(cryptsetup status "$(basename "${_ROOTDEV}")" | grep device: | sed -e 's#device:##g')")" elif [[ "${_NAME_SCHEME_PARAMETER}" == "FSLABEL" ]]; then - _LUKSDEV="LABEL=$(${_LSBLK} LABEL "$(cryptsetup status "$(basename "${_ROOTDEV}")" | grep device: | sed -e 's#device:##g')" 2>"${_NO_LOG}")" + _LUKSDEV="LABEL=$(${_LSBLK} LABEL "$(cryptsetup status "$(basename "${_ROOTDEV}")" | grep device: | sed -e 's#device:##g')")" else _LUKSDEV="$(cryptsetup status "$(basename "${_ROOTDEV}")" 2>"${_NO_LOG}" | grep device: | sed -e 's#device:##g'))" fi