It is possible not to give SCREEN_LOGDIR variable in devstack.
And also, SCREEN_LOGDIR is creating in stack.sh itself [1].
So we can remove our code which is creating SCREEN_LOGDIR.
This code breaks stack.sh process if user doesn't give this
variable.
[1]: 2688eedc51/stack.sh (L454)
Change-Id: I5c6ce81a97635b60fc1633397a24f93dc590fad6
Closes-Bug: #1548197
60 lines
1.5 KiB
Bash
Executable File
60 lines
1.5 KiB
Bash
Executable File
# magnum.sh - Devstack extras script to install magnum
|
|
|
|
# Save trace setting
|
|
XTRACE=$(set +o | grep xtrace)
|
|
set -o xtrace
|
|
|
|
echo_summary "magnum's plugin.sh was called..."
|
|
source $DEST/magnum/devstack/lib/magnum
|
|
(set -o posix; set)
|
|
|
|
if is_service_enabled m-api m-cond; then
|
|
if [[ "$1" == "stack" && "$2" == "install" ]]; then
|
|
echo_summary "Installing magnum"
|
|
install_magnum
|
|
|
|
# add image to glance
|
|
if [[ "$ENABLED_SERVICES" =~ 'm-api' ]]; then
|
|
MAGNUM_GUEST_IMAGE_URL=${MAGNUM_GUEST_IMAGE_URL:-"https://fedorapeople.org/groups/magnum/fedora-21-atomic-5.qcow2"}
|
|
IMAGE_URLS+=",${MAGNUM_GUEST_IMAGE_URL}"
|
|
fi
|
|
|
|
LIBS_FROM_GIT="${LIBS_FROM_GIT},python-magnumclient"
|
|
|
|
install_magnumclient
|
|
cleanup_magnum
|
|
elif [[ "$1" == "stack" && "$2" == "post-config" ]]; then
|
|
echo_summary "Configuring magnum"
|
|
configure_magnum
|
|
|
|
# Hack a large timeout for now
|
|
iniset /etc/keystone/keystone.conf token expiration 7200
|
|
|
|
if is_service_enabled key; then
|
|
create_magnum_accounts
|
|
fi
|
|
|
|
elif [[ "$1" == "stack" && "$2" == "extra" ]]; then
|
|
# Initialize magnum
|
|
init_magnum
|
|
magnum_register_image
|
|
|
|
# Start the magnum API and magnum taskmgr components
|
|
echo_summary "Starting magnum"
|
|
start_magnum
|
|
|
|
configure_iptables
|
|
fi
|
|
|
|
if [[ "$1" == "unstack" ]]; then
|
|
stop_magnum
|
|
fi
|
|
|
|
if [[ "$1" == "clean" ]]; then
|
|
cleanup_magnum
|
|
fi
|
|
fi
|
|
|
|
# Restore xtrace
|
|
$XTRACE
|