From 6c0f131ce725ddf9a250dbeb607fa38cb3e633bc Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Thu, 23 Feb 2023 17:10:04 +0100 Subject: debvm-create: do not fsck Asking for a fsck pass in fstab is not what we want. Requiring fsck makes sysvinit fail when fsck.ext4 is missing. Without that pass, it happily boots without e2fsprogs. Link: https://bugs.debian.org/1028267 Thanks: Thorsten Glaster --- bin/debvm-create | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/debvm-create b/bin/debvm-create index 10794c7..75f153b 100755 --- a/bin/debvm-create +++ b/bin/debvm-create @@ -280,7 +280,7 @@ set -- \ --variant=apt \ "--format=$MMFORMAT" \ "--architecture=$ARCHITECTURE" \ - '--customize-hook=echo "LABEL=debvm / ext4 defaults 0 1" >"$1/etc/fstab"' \ + '--customize-hook=echo "LABEL=debvm / ext4 defaults 0 0" >"$1/etc/fstab"' \ "$@" case "$INITSYSTEM" in @@ -289,7 +289,7 @@ case "$INITSYSTEM" in ;; sysv) set -- \ - --include=sysvinit-core,e2fsprogs \ + --include=sysvinit-core \ '--include=?not(?virtual)?exact-name(orphan-sysvinit-scripts)' \ "$@" ;; -- cgit v1.2.3