1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

lvm_import_vdo: --dry-run automatically verbose

Dry-run is way more usable when it's verbose.
This commit is contained in:
Zdenek Kabelac 2021-09-17 16:49:17 +02:00
parent 944e560e96
commit 3817392d87
2 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ Answer "yes" at any prompts.
.
.TP
.BR --dry-run
Print commands without running them.
Print verbosely commands without running them.
.
.
.SH DIAGNOSTICS

View File

@ -73,7 +73,7 @@ tool_usage() {
echo " -n | --name Specifies VG/LV name for converted VDO volume"
echo " -v | --verbose Be verbose"
echo " -y | --yes Answer \"yes\" at any prompts"
echo " --dry-run Print commands without running them"
echo " --dry-run Print verbosely commands without running them"
exit
}
@ -434,7 +434,7 @@ do
"-n"|"--name" ) shift; NAME=$1 ;;
"-v"|"--verbose") VERB="-v" ;;
"-y"|"--yes" ) YES="-y" ;;
"--dry-run" ) DRY="1" ;;
"--dry-run" ) DRY="1" ; VERB="-v" ;;
"-*") error "Wrong argument \"$1\". (see: $TOOL --help)" ;;
*) DEVICENAME=$1 ;; # device name does not start with '-'
esac