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:
parent
40d7b4cf20
commit
f0567c6265
@ -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 \
|
||||
|
@ -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 \
|
||||
|
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user