When --dry-run=yes is used it makes sense to spawn a pager to look at
the report it provides you with about what it is about to do. Hoewver,
when we are actually doing it, then the output is more in the category
of "logs" than "review material", and logs we generally don't page when
we generate them.
else if (dry_run >= 0)
arg_dry_run = dry_run;
+ /* Disable pager once we are not just reviewing, but doing things. */
+ if (!arg_dry_run)
+ arg_pager_flags |= PAGER_DISABLE;
+
if (arg_empty == EMPTY_CREATE && (arg_size == UINT64_MAX && !arg_size_auto))
return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
"If --empty=create is specified, --size= must be specified, too.");