ZTS: Add missing quotes
`default_setup` takes a disk list as the first argument and has optional additional arguments that control secondary functionality. A couple of test setups mistakenly call `default_setup $DISKS`. Add quotes so the second and subsequent disks are correctly included in the pool as vdevs rather than triggering unwanted behavior from `default_setup`. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: John Kennedy <john.kennedy@delphix.com> Signed-off-by: Ryan Moeller <ryan@iXsystems.com> Closes #10097
This commit is contained in:
parent
4b06d05298
commit
fa23c5be88
|
@ -39,4 +39,4 @@ else
|
|||
log_note "This machine is running ZFS Filesystem version $ZFS_VERSION"
|
||||
fi
|
||||
|
||||
default_setup $DISKS
|
||||
default_setup "$DISKS"
|
||||
|
|
|
@ -33,4 +33,4 @@
|
|||
|
||||
verify_runnable "global"
|
||||
|
||||
default_setup $DISKS
|
||||
default_setup "$DISKS"
|
||||
|
|
Loading…
Reference in New Issue