Don't use default path for multi_instance test

This commit is contained in:
Maniack Crudelis 2018-03-16 00:52:44 +01:00 committed by GitHub
parent 930f0370c8
commit 13f2643105
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -865,8 +865,13 @@ CHECK_MULTI_INSTANCE () {
local manifest_args_mod="$manifest_arguments" local manifest_args_mod="$manifest_arguments"
# Replace manifest key for the test # Replace manifest key for the test
replace_manifest_key "path" "$test_path" if [ "$install_type" = "subdir" ]; then
check_path=$test_path local check_path=$test_path
elif [ "$install_type" = "root" ]; then
local check_path=/
fi
replace_manifest_key "path" "$check_path"
replace_manifest_key "user" "$test_user" replace_manifest_key "user" "$test_user"
replace_manifest_key "public" "$public_public_arg" replace_manifest_key "public" "$public_public_arg"