From 2cf99e2cbb127a9f63ae1efd24c0ed52bf73ed41 Mon Sep 17 00:00:00 2001 From: Patrick Schleizer Date: Fri, 17 Nov 2023 23:13:35 -0500 Subject: [PATCH] remove obsolete uses of `eend $?` because these are now covered by the error_handler --- grml-debootstrap | 28 ++-------------------------- 1 file changed, 2 insertions(+), 26 deletions(-) diff --git a/grml-debootstrap b/grml-debootstrap index b9b298f..3bcaae5 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -1320,8 +1320,6 @@ mkfs() { if [ -n "${ARM_EFI_TARGET}" ] ; then einfo "Running mkfs.fat $MKFS_OPTS on $ARM_EFI_TARGET" mkfs.fat -n "EFI" "$ARM_EFI_TARGET" - eend $? - MKFS_OPTS="$MKFS_OPTS -L LINUX" fi @@ -1337,14 +1335,12 @@ mkfs() { else einfo "Changing disk uuid for $TARGET to fixed (non-random) value $DISK_IDENTIFIER using tune2fs" tune2fs "$TARGET" -U "$DISK_IDENTIFIER" /dev/null ; then einfo "Unmounting bind-mount /run/udev" umount "${MNTPOINT}"/run/udev - eend $? fi umount "${MNTPOINT}"/proc @@ -1936,25 +1926,18 @@ iface ${interface} inet dhcp einfo "Installing default /etc/network/interfaces as requested via --defaultinterfaces options." mkdir -p "${MNTPOINT}/etc/network" echo "$DEFAULT_INTERFACES" > "${MNTPOINT}/etc/network/interfaces" - # shellcheck disable=SC2320 - eend $? elif [ -n "$VIRTUAL" ] ; then einfo "Setting up Virtual Machine, installing default /etc/network/interfaces" mkdir -p "${MNTPOINT}/etc/network" echo "$DEFAULT_INTERFACES" > "${MNTPOINT}/etc/network/interfaces" - # shellcheck disable=SC2320 - eend $? elif [ -r /etc/network/interfaces ] ; then einfo "Copying /etc/network/interfaces from host to target system" mkdir -p "${MNTPOINT}/etc/network" cp $VERBOSE /etc/network/interfaces "${MNTPOINT}/etc/network/interfaces" - eend $? else ewarn "Couldn't read /etc/network/interfaces, installing default /etc/network/interfaces" mkdir -p "${MNTPOINT}/etc/network" echo "$DEFAULT_INTERFACES" > "${MNTPOINT}/etc/network/interfaces" - # shellcheck disable=SC2320 - eend $? fi # install config file providing some example entries @@ -2015,7 +1998,6 @@ iface ${interface} inet dhcp einfo "Setting up bind-mount /run/udev" mkdir -p "${MNTPOINT}"/run/udev mount --bind /run/udev "${MNTPOINT}"/run/udev - eend $? fi } # }}} @@ -2033,7 +2015,7 @@ execute_pre_scripts() { for script in "${pre_scripts}"/* ; do if [ -x "$script" ] ; then einfo "Executing pre-script $script" - "$script" ; eend $? + "$script" fi done fi @@ -2058,7 +2040,7 @@ execute_post_scripts() { for script in "${post_scripts}"/* ; do if [ -x "$script" ] ; then einfo "Executing post-script $script" - "$script" ; eend $? + "$script" fi done fi @@ -2115,7 +2097,6 @@ chrootscript() { if grep -q GRML_CHROOT_SCRIPT_MARKER "${MNTPOINT}/bin/chroot-script" ; then einfo "Removing chroot-script again" rm -f "${MNTPOINT}/bin/chroot-script" - eend $? else einfo "Keeping chroot-script as string GRML_CHROOT_SCRIPT_MARKER could not be found" fi @@ -2134,7 +2115,6 @@ umount_chroot() { if grep -q "$ISODIR" /proc/mounts ; then einfo "Unmount $MNTPOINT/$ISODIR" umount "$MNTPOINT/$ISODIR" - eend $? fi fi @@ -2142,13 +2122,11 @@ umount_chroot() { if mountpoint "${MNTPOINT}"/run/udev &>/dev/null ; then einfo "Unmounting bind-mount /run/udev" umount "${MNTPOINT}"/run/udev - eend $? fi if [ -n "$PARTITION" ] ; then einfo "Unmount $MNTPOINT" umount "$MNTPOINT" - eend $? fi fi } @@ -2165,7 +2143,6 @@ fscktool() { [ -n "$FSCKTOOL" ] || FSCKTOOL="fsck.${MKFS#mkfs.}" einfo "Checking filesystem on $TARGET using $FSCKTOOL" "$FSCKTOOL" "$TARGET" - eend $? fi } # }}} @@ -2183,7 +2160,6 @@ remove_configs() { einfo "Removing configuration files from installed system as requested via --remove-configs / REMOVE_CONFIGS." rm -rf "${MNTPOINT}"/etc/debootstrap/ - eend $? } # }}} -- 2.1.4