Remove double quotes around additional arguments in tests

It seems quoting the variable had an effect around how the
arguments and their values were interpreted.

With double quotes, passing an extra argument would appear like
so:
     packstack '--nova-libvirt-virt-type=kvm' --allinone [...]
and without double quotes:
     packstack --nova-libvirt-virt-type=kvm --allinone [...]

The first interpretation does not work while the second one does.

Change-Id: Iba47c5e424b7c9517b4e39790b7289b041e250b7
(cherry picked from commit e7c0e05b10)
This commit is contained in:
David Moreau-Simard 2016-10-09 13:48:04 -04:00 committed by David Moreau Simard
parent 4409a2cd05
commit 61b0b50056
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ echo -e "Generating packstack config for:
echo "tempest will run if packstack's installation completes successfully."
echo
$SUDO packstack "${ADDITIONAL_ARGS}" \
$SUDO packstack ${ADDITIONAL_ARGS} \
--allinone \
--debug \
--service-workers=2 \

View File

@ -15,7 +15,7 @@ echo -e "Generating packstack config for:
echo "tempest will run if packstack's installation completes successfully."
echo
$SUDO packstack "${ADDITIONAL_ARGS}" \
$SUDO packstack ${ADDITIONAL_ARGS} \
--allinone \
--debug \
--service-workers=2 \

View File

@ -16,7 +16,7 @@ echo -e "Generating packstack config for:
echo "tempest will run if packstack's installation completes successfully."
echo
$SUDO packstack "${ADDITIONAL_ARGS}" \
$SUDO packstack ${ADDITIONAL_ARGS} \
--allinone \
--debug \
--service-workers=2 \