From 2a66965622de9f9c0da127a7acbf46302ad3282f Mon Sep 17 00:00:00 2001 From: "Mark H. Spatz" Date: Mon, 14 Nov 2022 17:53:07 -0500 Subject: [PATCH] Remove resize2fs_once init script sys-mods' firstboot script resizes both the root partition and filesystem, so this isn't needed anymore. --- stage2/01-sys-tweaks/01-run.sh | 11 ---------- stage2/01-sys-tweaks/files/resize2fs_once | 25 ----------------------- 2 files changed, 36 deletions(-) delete mode 100644 stage2/01-sys-tweaks/files/resize2fs_once diff --git a/stage2/01-sys-tweaks/01-run.sh b/stage2/01-sys-tweaks/01-run.sh index 294a0ec36b..0352c3cf70 100755 --- a/stage2/01-sys-tweaks/01-run.sh +++ b/stage2/01-sys-tweaks/01-run.sh @@ -1,7 +1,5 @@ #!/bin/bash -e -install -m 755 files/resize2fs_once "${ROOTFS_DIR}/etc/init.d/" - install -d "${ROOTFS_DIR}/etc/systemd/system/rc-local.service.d" install -m 644 files/ttyoutput.conf "${ROOTFS_DIR}/etc/systemd/system/rc-local.service.d/" @@ -36,16 +34,7 @@ systemctl enable regenerate_ssh_host_keys EOF if [ "${USE_QEMU}" = "1" ]; then - echo "enter QEMU mode" install -m 644 files/90-qemu.rules "${ROOTFS_DIR}/etc/udev/rules.d/" - on_chroot << EOF -systemctl disable resize2fs_once -EOF - echo "leaving QEMU mode" -else - on_chroot << EOF -systemctl enable resize2fs_once -EOF fi on_chroot <&2 - exit 3 - ;; -esac