
* Move direct playbook implementation to a independent role so that the role is reusable in a different playbooks. * Add a new scenario which installs openstack allinone without running tempest tests. Change-Id: I6f19d2b8128fbb0f2034892a11127bce73d102f9
10 lines
203 B
Bash
Executable File
10 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
if [ $(id -u) != 0 ]; then
|
|
SUDO='sudo'
|
|
fi
|
|
|
|
$SUDO packstack ${ADDITIONAL_ARGS} \
|
|
--allinone \
|
|
--debug \
|
|
--default-password="packstack" || export FAILURE=true
|