b8960f62f8
We have it enabled in 002 and 003 but not in these two. Change-Id: I22061b08c19b527f3deb9ce04d1d55bd0d0e843c
12 lines
265 B
Bash
Executable File
12 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
if [ $(id -u) != 0 ]; then
|
|
SUDO='sudo'
|
|
fi
|
|
|
|
$SUDO packstack ${ADDITIONAL_ARGS} \
|
|
--allinone \
|
|
--debug \
|
|
--os-debug-mode=y \
|
|
--service-workers=2 \
|
|
--default-password="packstack" || export FAILURE=true
|