From 934b0b3d81b04b620d03f31ddc80510c7edd9e45 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Mon, 16 Jan 2023 08:28:47 +0100 Subject: [PATCH] change succesfully to succesful --- usr/lib/archboot/installer/blockdevices.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/usr/lib/archboot/installer/blockdevices.sh b/usr/lib/archboot/installer/blockdevices.sh index ae7fe35af..be4c8c486 100644 --- a/usr/lib/archboot/installer/blockdevices.sh +++ b/usr/lib/archboot/installer/blockdevices.sh @@ -649,7 +649,7 @@ _createpv() _umountall #shellcheck disable=SC2086 if pvcreate -y ${_DEV} &>"${_LOG}"; then - _dialog --infobox "Creating physical volume on ${_DEV} was successfully.\n\nContinuing in 3 seconds..." 5 75 + _dialog --infobox "Creating physical volume on ${_DEV} was successful.\n\nContinuing in 3 seconds..." 5 75 sleep 3 else _dialog --msgbox "Error while creating physical volume on ${_DEV} (see ${_LOG} for details)." 0 0; return 1 @@ -760,7 +760,7 @@ _createvg() _umountall #shellcheck disable=SC2086 if vgcreate ${_VGDEV} ${_PV} &>"${_LOG}"; then - _dialog --infobox "Creating Volume Group ${_VGDEV} was successfully.\n\nContinuing in 3 seconds..." 5 60 + _dialog --infobox "Creating Volume Group ${_VGDEV} was successful.\n\nContinuing in 3 seconds..." 5 60 sleep 3 else _dialog --msgbox "Error while creating Volume Group ${_VGDEV} (see ${_LOG} for details)." 0 0 @@ -830,7 +830,7 @@ _createlv() if [[ -n "${_LV_ALL}" ]]; then #shellcheck disable=SC2086 if lvcreate ${_LV_EXTRA} -l +100%FREE ${_LV} -n ${_LVDEV} &>"${_LOG}"; then - _dialog --infobox "Creating Logical Volume ${_LVDEV} was successfully.\n\nContinuing in 3 seconds..." 5 60 + _dialog --infobox "Creating Logical Volume ${_LVDEV} was successful.\n\nContinuing in 3 seconds..." 5 60 sleep 3 else _dialog --msgbox "Error while creating Logical Volume ${_LVDEV} (see ${_LOG} for details)." 0 0 @@ -839,7 +839,7 @@ _createlv() else #shellcheck disable=SC2086 if lvcreate ${_LV_EXTRA} -L ${_LV_SIZE} ${_LV} -n ${_LVDEV} &>"${_LOG}"; then - _dialog --infobox "Creating Logical Volume ${_LVDEV} was successfully.\n\nContinuing in 3 seconds..." 5 60 + _dialog --infobox "Creating Logical Volume ${_LVDEV} was successful.\n\nContinuing in 3 seconds..." 5 60 sleep 3 else _dialog --msgbox "Error while creating Logical Volume ${_LVDEV} (see ${_LOG} for details)." 0 0