From: undef Date: Thu, 14 Jul 2022 05:53:15 +0000 (+0000) Subject: growfs: don't actually resize on dry-run X-Git-Tag: v252-rc1~659 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d26c0f7243a709cfa7b8bdc87e8131746bb0e2d0;p=thirdparty%2Fsystemd.git growfs: don't actually resize on dry-run This causes systemd-growfs to exit before resizing the partition when `--dry-run` is passed. Resizing during a dry run of a change breaks the users expectations. --- diff --git a/src/partition/growfs.c b/src/partition/growfs.c index 31dcf0ffdf1..d9603d2b6d1 100644 --- a/src/partition/growfs.c +++ b/src/partition/growfs.c @@ -241,6 +241,10 @@ static int run(int argc, char *argv[]) { return log_error_errno(errno, "Failed to query size of \"%s\": %m", devpath); log_debug("Resizing \"%s\" to %"PRIu64" bytes...", arg_target, size); + + if (arg_dry_run) + return 0; + r = resize_fs(mountfd, size, &newsize); if (r < 0) return log_error_errno(r, "Failed to resize \"%s\" to %"PRIu64" bytes: %m",