1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +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 4ff472b907
commit 1f7c9da554

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"
}