1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-02-04 21:47:46 +03:00

tests: split args

Here we want args to be splited into individual strings.
This commit is contained in:
Zdenek Kabelac 2019-05-06 13:02:45 +02:00
parent 1e9c409a3e
commit 143aca25da

View File

@ -137,7 +137,7 @@ get_crypt_kname() {
# $1 device
# $2 pass
crypt_format() {
echo "$2" | cryptsetup luksFormat "$FORMAT_PARAMS" "$1"
echo "$2" | cryptsetup luksFormat $FORMAT_PARAMS "$1"
}