diff --git a/usr/lib/archboot/installer/configuration.sh b/usr/lib/archboot/installer/configuration.sh index 136544f54..b02df924a 100644 --- a/usr/lib/archboot/installer/configuration.sh +++ b/usr/lib/archboot/installer/configuration.sh @@ -180,7 +180,7 @@ _user_management() { _set_comment chroot "${_DESTDIR}" usermod -c "${_FN}" "${_USER}" elif [[ "${_USER_ACTION}" = 3 ]]; then - _dialog --defaultno --yesno "${_USER} will be COMPLETELY ERASED!\nALL USER DATA OF ${_USER} WILL BE LOST.\n\nAre you absolutely sure?" 0 0 || return 1 + _dialog --defaultno --yesno "${_USER} will be COMPLETELY ERASED!\nALL USER DATA OF ${_USER} WILL BE LOST.\n\nAre you absolutely sure?" 0 0 && \ chroot "${_DESTDIR}" userdel -r "${_USER}" &>"${_LOG}" fi fi