stack.sh
ba23cc73
 #!/usr/bin/env bash
 
c6c1d439
 # ``stack.sh`` is an opinionated OpenStack developer installation.  It
4a43b7bd
 # installs and configures various combinations of **Ceilometer**, **Cinder**,
 # **Glance**, **Heat**, **Horizon**, **Keystone**, **Nova**, **Quantum**
 # and **Swift**
ba23cc73
 
9b353671
 # This script allows you to specify configuration options of what git
5372f433
 # repositories to use, enabled services, network configuration and various
 # passwords.  If you are crafty you can run the script on multiple nodes using
 # shared settings for common resources (mysql, rabbitmq) and build a multi-node
 # developer install.
782b9917
 
4a43b7bd
 # To keep this script simple we assume you are running on a recent **Ubuntu**
b9182d65
 # (11.10 Oneiric or newer) or **Fedora** (F16 or newer) machine.  It
4a43b7bd
 # should work in a VM or physical server.  Additionally we put the list of
 # ``apt`` and ``rpm`` dependencies and other configuration files in this repo.
24859060
 
0e7e897b
 # Learn more and get the most recent version at http://devstack.org
6edd17f7
 
c6c1d439
 # Keep track of the devstack directory
51fb22ef
 TOP_DIR=$(cd $(dirname "$0") && pwd)
 
6563a3ce
 # Import common functions
c6c1d439
 source $TOP_DIR/functions
 
 # Determine what system we are running on.  This provides ``os_VENDOR``,
 # ``os_RELEASE``, ``os_UPDATE``, ``os_PACKAGE``, ``os_CODENAME``
a9e0a488
 # and ``DISTRO``
 GetDistro
6edd17f7
 
6015c82a
 
b9182d65
 
9122e7b1
 # Settings
 # ========
 
df0972c1
 # ``stack.sh`` is customizable through setting environment variables.  If you
 # want to override a setting you can set and export it::
9122e7b1
 #
428af5a2
 #     export DATABASE_PASSWORD=anothersecret
9122e7b1
 #     ./stack.sh
 #
428af5a2
 # You can also pass options on a single line ``DATABASE_PASSWORD=simple ./stack.sh``
9122e7b1
 #
df0972c1
 # Additionally, you can put any local variables into a ``localrc`` file::
9122e7b1
 #
428af5a2
 #     DATABASE_PASSWORD=anothersecret
 #     DATABASE_USER=hellaroot
9122e7b1
 #
 # We try to have sensible defaults, so you should be able to run ``./stack.sh``
4a43b7bd
 # in most cases.  ``localrc`` is not distributed with DevStack and will never
 # be overwritten by a DevStack update.
9122e7b1
 #
df0972c1
 # DevStack distributes ``stackrc`` which contains locations for the OpenStack
 # repositories and branches to configure.  ``stackrc`` sources ``localrc`` to
4a43b7bd
 # allow you to safely override those settings.
 
bbafb1b5
 if [[ ! -r $TOP_DIR/stackrc ]]; then
     echo "ERROR: missing $TOP_DIR/stackrc - did you grab more than just stack.sh?"
     exit 1
 fi
 source $TOP_DIR/stackrc
df0972c1
 
4a43b7bd
 
 # Proxy Settings
 # --------------
 
 # HTTP and HTTPS proxy servers are supported via the usual environment variables [1]
 # ``http_proxy``, ``https_proxy`` and ``no_proxy``. They can be set in
 # ``localrc`` if necessary or on the command line::
 #
 # [1] http://www.w3.org/Daemon/User/Proxies/ProxyClients.html
c727aa89
 #
7abe4f24
 #     http_proxy=http://proxy.example.com:3128/ no_proxy=repo.example.net ./stack.sh
4a43b7bd
 
bbafb1b5
 if [[ -n "$http_proxy" ]]; then
     export http_proxy=$http_proxy
 fi
 if [[ -n "$https_proxy" ]]; then
     export https_proxy=$https_proxy
c6c1d439
 fi
7abe4f24
 if [[ -n "$no_proxy" ]]; then
     export no_proxy=$no_proxy
 fi
9122e7b1
 
 # Destination path for installation ``DEST``
 DEST=${DEST:-/opt/stack}
 
c6c1d439
 
 # Sanity Check
 # ============
 
33cb4303
 # Clean up last environment var cache
 if [[ -r $TOP_DIR/.stackenv ]]; then
     rm $TOP_DIR/.stackenv
 fi
 
c1b486a5
 # Import database configuration
 source $TOP_DIR/lib/database
 
 # Validate database selection
 # Since DATABASE_BACKENDS is now set, this also gets ENABLED_SERVICES
 # properly configured for the database selection.
 use_database $DATABASE_TYPE || echo "Invalid database '$DATABASE_TYPE'"
 
f04178fd
 # Remove services which were negated in ENABLED_SERVICES
6fd28117
 # using the "-" prefix (e.g., "-rabbit") instead of
f04178fd
 # calling disable_service().
 disable_negated_services
c4cd4140
 
c6c1d439
 # Warn users who aren't on an explicitly supported distro, but allow them to
 # override check and attempt installation with ``FORCE=yes ./stack``
e7bca2f8
 if [[ ! ${DISTRO} =~ (oneiric|precise|quantal|raring|f16|f17|f18|opensuse-12.2) ]]; then
4a1f5a72
     echo "WARNING: this script has not been tested on $DISTRO"
c6c1d439
     if [[ "$FORCE" != "yes" ]]; then
         echo "If you wish to run this script anyway run with FORCE=yes"
         exit 1
     fi
 fi
 
856a11e0
 if is_service_enabled qpid && ! qpid_is_supported; then
     echo "Qpid support is not available for this version of your distribution."
4a221459
     exit 1
 fi
 
67787e6b
 # ``stack.sh`` keeps function libraries here
 # Make sure ``$TOP_DIR/lib`` directory is present
 if [ ! -d $TOP_DIR/lib ]; then
4a43b7bd
     echo "ERROR: missing devstack/lib"
67787e6b
     exit 1
 fi
 
4a43b7bd
 # ``stack.sh`` keeps the list of ``apt`` and ``rpm`` dependencies and config
 # templates and other useful files in the ``files`` subdirectory
c6c1d439
 FILES=$TOP_DIR/files
 if [ ! -d $FILES ]; then
4a43b7bd
     echo "ERROR: missing devstack/files"
c6c1d439
     exit 1
 fi
 
15733351
 SCREEN_NAME=${SCREEN_NAME:-stack}
c6c1d439
 # Check to see if we are already running DevStack
15733351
 if type -p screen >/dev/null && screen -ls | egrep -q "[0-9].$SCREEN_NAME"; then
55458455
     echo "You are already running a stack.sh session."
     echo "To rejoin this session type 'screen -x stack'."
4a43b7bd
     echo "To destroy this session, type './unstack.sh'."
55458455
     exit 1
 fi
0a16145a
 
3bae7c2c
 # Make sure we only have one rpc backend enabled.
 rpc_backend_cnt=0
 for svc in qpid zeromq rabbit; do
     is_service_enabled $svc &&
         ((rpc_backend_cnt++))
 done
 if [ "$rpc_backend_cnt" -gt 1 ]; then
     echo "ERROR: only one rpc backend may be enabled,"
     echo "       set only one of 'rabbit', 'qpid', 'zeromq'"
     echo "       via ENABLED_SERVICES."
 elif [ "$rpc_backend_cnt" == 0 ]; then
     echo "ERROR: at least one rpc backend must be enabled,"
     echo "       set one of 'rabbit', 'qpid', 'zeromq'"
     echo "       via ENABLED_SERVICES."
 fi
 unset rpc_backend_cnt
 
7903b795
 # Set up logging level
 VERBOSE=$(trueorfalse True $VERBOSE)
 
4a43b7bd
 
 # root Access
 # -----------
 
 # OpenStack is designed to be run as a non-root user; Horizon will fail to run
 # as **root** since Apache will not serve content from **root** user).  If
df0972c1
 # ``stack.sh`` is run as **root**, it automatically creates a **stack** user with
c9e3fff7
 # sudo privileges and runs as that user.
cbe98d56
 
d4622953
 if [[ $EUID -eq 0 ]]; then
91b8d13e
     STACK_USER=$DEFAULT_STACK_USER
92e81992
     ROOTSLEEP=${ROOTSLEEP:-10}
0031df01
     echo "You are running this script as root."
91b8d13e
     echo "In $ROOTSLEEP seconds, we will create a user '$STACK_USER' and run as that user"
92e81992
     sleep $ROOTSLEEP
782b9917
 
4a43b7bd
     # Give the non-root user the ability to run as **root** via ``sudo``
71ebc6ff
     is_package_installed sudo || install_package sudo
91b8d13e
     if ! getent group $STACK_USER >/dev/null; then
         echo "Creating a group called $STACK_USER"
         groupadd $STACK_USER
e29b94e2
     fi
91b8d13e
     if ! getent passwd $STACK_USER >/dev/null; then
         echo "Creating a user called $STACK_USER"
         useradd -g $STACK_USER -s /bin/bash -d $DEST -m $STACK_USER
c9e3fff7
     fi
0d2145a0
 
e5d92380
     echo "Giving stack user passwordless sudo privileges"
4a43b7bd
     # UEC images ``/etc/sudoers`` does not have a ``#includedir``, add one
4bec581e
     grep -q "^#includedir.*/etc/sudoers.d" /etc/sudoers ||
         echo "#includedir /etc/sudoers.d" >> /etc/sudoers
91b8d13e
     ( umask 226 && echo "$STACK_USER ALL=(ALL) NOPASSWD:ALL" \
55c9d3f1
         > /etc/sudoers.d/50_stack_sh )
782b9917
 
91b8d13e
     echo "Copying files to $STACK_USER user"
8f393df3
     STACK_DIR="$DEST/${TOP_DIR##*/}"
     cp -r -f -T "$TOP_DIR" "$STACK_DIR"
91b8d13e
     chown -R $STACK_USER "$STACK_DIR"
     cd "$STACK_DIR"
74c084cd
     if [[ "$SHELL_AFTER_RUN" != "no" ]]; then
91b8d13e
         exec sudo -u $STACK_USER  bash -l -c "set -e; bash stack.sh; bash"
74c084cd
     else
91b8d13e
         exec sudo -u $STACK_USER bash -l -c "set -e; source stack.sh"
74c084cd
     fi
f9da5081
     exit 1
509992fe
 else
91b8d13e
     STACK_USER=`whoami`
4a43b7bd
     # We're not **root**, make sure ``sudo`` is available
71ebc6ff
     is_package_installed sudo || die "Sudo is required.  Re-run stack.sh as root ONE TIME ONLY to set up sudo."
e0d677c7
 
4a43b7bd
     # UEC images ``/etc/sudoers`` does not have a ``#includedir``, add one
84a399b4
     sudo grep -q "^#includedir.*/etc/sudoers.d" /etc/sudoers ||
         echo "#includedir /etc/sudoers.d" | sudo tee -a /etc/sudoers
e0d677c7
 
     # Set up devstack sudoers
0a16145a
     TEMPFILE=`mktemp`
91b8d13e
     echo "$STACK_USER ALL=(root) NOPASSWD:ALL" >$TEMPFILE
f2a25b77
     # Some binaries might be under /sbin or /usr/sbin, so make sure sudo will
     # see them by forcing PATH
91b8d13e
     echo "Defaults:$STACK_USER secure_path=/sbin:/usr/sbin:/usr/bin:/bin:/usr/local/sbin:/usr/local/bin" >> $TEMPFILE
0a16145a
     chmod 0440 $TEMPFILE
     sudo chown root:root $TEMPFILE
e0d677c7
     sudo mv $TEMPFILE /etc/sudoers.d/50_stack_sh
 
     # Remove old file
     sudo rm -f /etc/sudoers.d/stack_sh_nova
d4622953
 fi
 
e26232bc
 # Create the destination directory and ensure it is writable by the user
 sudo mkdir -p $DEST
 if [ ! -w $DEST ]; then
91b8d13e
     sudo chown $STACK_USER $DEST
e26232bc
 fi
 
4a43b7bd
 # Set ``OFFLINE`` to ``True`` to configure ``stack.sh`` to run cleanly without
 # Internet access. ``stack.sh`` must have been previously run with Internet
 # access to install prerequisites and fetch repositories.
25dab66b
 OFFLINE=`trueorfalse False $OFFLINE`
 
4a43b7bd
 # Set ``ERROR_ON_CLONE`` to ``True`` to configure ``stack.sh`` to exit if
 # the destination git repository does not exist during the ``git_clone``
 # operation.
94cb9600
 ERROR_ON_CLONE=`trueorfalse False $ERROR_ON_CLONE`
 
67787e6b
 # Destination path for service data
 DATA_DIR=${DATA_DIR:-${DEST}/data}
 sudo mkdir -p $DATA_DIR
91b8d13e
 sudo chown $STACK_USER $DATA_DIR
67787e6b
 
 
d81a0274
 # Common Configuration
 # ====================
 
 # Set fixed and floating range here so we can make sure not to use addresses
 # from either range when attempting to guess the IP to use for the host.
 # Note that setting FIXED_RANGE may be necessary when running DevStack
 # in an OpenStack cloud that uses either of these address ranges internally.
 FLOATING_RANGE=${FLOATING_RANGE:-172.24.4.224/28}
 FIXED_RANGE=${FIXED_RANGE:-10.0.0.0/24}
 FIXED_NETWORK_SIZE=${FIXED_NETWORK_SIZE:-256}
 NETWORK_GATEWAY=${NETWORK_GATEWAY:-10.0.0.1}
 
 # Find the interface used for the default route
 HOST_IP_IFACE=${HOST_IP_IFACE:-$(ip route | sed -n '/^default/{ s/.*dev \(\w\+\)\s\+.*/\1/; p; }')}
 # Search for an IP unless an explicit is set by ``HOST_IP`` environment variable
 if [ -z "$HOST_IP" -o "$HOST_IP" == "dhcp" ]; then
     HOST_IP=""
     HOST_IPS=`LC_ALL=C ip -f inet addr show ${HOST_IP_IFACE} | awk '/inet/ {split($2,parts,"/");  print parts[1]}'`
     for IP in $HOST_IPS; do
         # Attempt to filter out IP addresses that are part of the fixed and
         # floating range. Note that this method only works if the ``netaddr``
         # python library is installed. If it is not installed, an error
         # will be printed and the first IP from the interface will be used.
         # If that is not correct set ``HOST_IP`` in ``localrc`` to the correct
         # address.
         if ! (address_in_net $IP $FIXED_RANGE || address_in_net $IP $FLOATING_RANGE); then
             HOST_IP=$IP
             break;
         fi
     done
     if [ "$HOST_IP" == "" ]; then
         echo "Could not determine host ip address."
         echo "Either localrc specified dhcp on ${HOST_IP_IFACE} or defaulted"
         exit 1
     fi
 fi
 
 # Allow the use of an alternate hostname (such as localhost/127.0.0.1) for service endpoints.
 SERVICE_HOST=${SERVICE_HOST:-$HOST_IP}
c83a7e12
 SERVICE_PROTOCOL=${SERVICE_PROTOCOL:-http}
d81a0274
 
 # Configure services to use syslog instead of writing to individual log files
 SYSLOG=`trueorfalse False $SYSLOG`
 SYSLOG_HOST=${SYSLOG_HOST:-$HOST_IP}
 SYSLOG_PORT=${SYSLOG_PORT:-516}
 
 # Use color for logging output (only available if syslog is not used)
 LOG_COLOR=`trueorfalse True $LOG_COLOR`
 
 # Service startup timeout
 SERVICE_TIMEOUT=${SERVICE_TIMEOUT:-60}
 
 
4a43b7bd
 # Configure Projects
 # ==================
67787e6b
 
 # Get project function libraries
c83a7e12
 source $TOP_DIR/lib/tls
b562e6a7
 source $TOP_DIR/lib/horizon
d81a0274
 source $TOP_DIR/lib/keystone
73f6f25b
 source $TOP_DIR/lib/glance
bf67c19c
 source $TOP_DIR/lib/nova
67787e6b
 source $TOP_DIR/lib/cinder
ece6a332
 source $TOP_DIR/lib/swift
93361643
 source $TOP_DIR/lib/ceilometer
bfdad75e
 source $TOP_DIR/lib/heat
d6767d0d
 source $TOP_DIR/lib/quantum
d093121f
 source $TOP_DIR/lib/tempest
f35cf91a
 source $TOP_DIR/lib/baremetal
67787e6b
 
4a43b7bd
 # Set the destination directories for OpenStack projects
ca85b799
 HORIZON_DIR=$DEST/horizon
9f61d29e
 OPENSTACKCLIENT_DIR=$DEST/python-openstackclient
ba23cc73
 NOVNC_DIR=$DEST/noVNC
42b1aa9c
 SWIFT3_DIR=$DEST/swift3
a841644e
 
213c4168
 # Should cinder perform secure deletion of volumes?
 # Defaults to true, can be set to False to avoid this bug when testing:
 # https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1023755
 CINDER_SECURE_DELETE=`trueorfalse True $CINDER_SECURE_DELETE`
 
4a43b7bd
 # Name of the LVM volume group to use/create for iscsi volumes
67787e6b
 VOLUME_GROUP=${VOLUME_GROUP:-stack-volumes}
2229a6e3
 VOLUME_NAME_PREFIX=${VOLUME_NAME_PREFIX:-volume-}
55458455
 INSTANCE_NAME_PREFIX=${INSTANCE_NAME_PREFIX:-instance-}
d02b7b7b
 
7a549f40
 # Generic helper to configure passwords
 function read_password {
7903b795
     XTRACE=$(set +o | grep xtrace)
7a549f40
     set +o xtrace
     var=$1; msg=$2
     pw=${!var}
 
b4db2254
     localrc=$TOP_DIR/localrc
6015c82a
 
7a549f40
     # If the password is not defined yet, proceed to prompt user for a password.
     if [ ! $pw ]; then
         # If there is no localrc file, create one
b4db2254
         if [ ! -e $localrc ]; then
             touch $localrc
7a549f40
         fi
 
9b353671
         # Presumably if we got this far it can only be that our localrc is missing
7a549f40
         # the required password.  Prompt user for a password and write to localrc.
b4db2254
         echo ''
         echo '################################################################################'
         echo $msg
         echo '################################################################################'
4e6a2b71
         echo "This value will be written to your localrc file so you don't have to enter it "
         echo "again.  Use only alphanumeric characters."
b4db2254
         echo "If you leave this blank, a random default value will be used."
4e6a2b71
         pw=" "
         while true; do
             echo "Enter a password now:"
             read -e $var
             pw=${!var}
             [[ "$pw" = "`echo $pw | tr -cd [:alnum:]`" ]] && break
             echo "Invalid chars in password.  Try again:"
         done
b4db2254
         if [ ! $pw ]; then
             pw=`openssl rand -hex 10`
7a549f40
         fi
b4db2254
         eval "$var=$pw"
         echo "$var=$pw" >> $localrc
7a549f40
     fi
7903b795
     $XTRACE
7a549f40
 }
 
13dc5ccd
 
782b9917
 # Nova Network Configuration
 # --------------------------
 
df0972c1
 # FIXME: more documentation about why these are important options.  Also
 # we should make sure we use the same variable names as the option names.
5372f433
 
8e2cffdf
 if [ "$VIRT_DRIVER" = 'xenserver' ]; then
     PUBLIC_INTERFACE_DEFAULT=eth3
4a43b7bd
     # Allow ``build_domU.sh`` to specify the flat network bridge via kernel args
0af143b3
     FLAT_NETWORK_BRIDGE_DEFAULT=$(grep -o 'flat_network_bridge=[[:alnum:]]*' /proc/cmdline | cut -d= -f 2 | sort -u)
8e2cffdf
     GUEST_INTERFACE_DEFAULT=eth1
f35cf91a
 elif [ "$VIRT_DRIVER" = 'baremetal' ]; then
     PUBLIC_INTERFACE_DEFAULT=eth0
     FLAT_NETWORK_BRIDGE_DEFAULT=br100
     FLAT_INTERFACE=${FLAT_INTERFACE:-eth0}
     FORCE_DHCP_RELEASE=${FORCE_DHCP_RELEASE:-False}
     NET_MAN=${NET_MAN:-FlatManager}
     STUB_NETWORK=${STUB_NETWORK:-False}
8e2cffdf
 else
     PUBLIC_INTERFACE_DEFAULT=br100
     FLAT_NETWORK_BRIDGE_DEFAULT=br100
     GUEST_INTERFACE_DEFAULT=eth0
 fi
 
 PUBLIC_INTERFACE=${PUBLIC_INTERFACE:-$PUBLIC_INTERFACE_DEFAULT}
a72f7ad3
 NET_MAN=${NET_MAN:-FlatDHCPManager}
1097c7ca
 EC2_DMZ_HOST=${EC2_DMZ_HOST:-$SERVICE_HOST}
8e2cffdf
 FLAT_NETWORK_BRIDGE=${FLAT_NETWORK_BRIDGE:-$FLAT_NETWORK_BRIDGE_DEFAULT}
 VLAN_INTERFACE=${VLAN_INTERFACE:-$GUEST_INTERFACE_DEFAULT}
f35cf91a
 FORCE_DHCP_RELEASE=${FORCE_DHCP_RELEASE:-True}
cbe98d56
 
696ad331
 # Test floating pool and range are used for testing.  They are defined
 # here until the admin APIs can replace nova-manage
 TEST_FLOATING_POOL=${TEST_FLOATING_POOL:-test}
 TEST_FLOATING_RANGE=${TEST_FLOATING_RANGE:-192.168.253.0/29}
 
4a43b7bd
 # ``MULTI_HOST`` is a mode where each compute node runs its own network node.  This
cbe98d56
 # allows network operations and routing for a VM to occur on the server that is
 # running the VM - removing a SPOF and bandwidth bottleneck.
7d13f309
 MULTI_HOST=`trueorfalse False $MULTI_HOST`
30f68e96
 
4a43b7bd
 # If you are using the FlatDHCP network mode on multiple hosts, set the
 # ``FLAT_INTERFACE`` variable but make sure that the interface doesn't already
 # have an IP or you risk breaking things.
5372f433
 #
9b353671
 # **DHCP Warning**:  If your flat interface device uses DHCP, there will be a
 # hiccup while the network is moved from the flat interface to the flat network
 # bridge.  This will happen when you launch your first instance.  Upon launch
4a43b7bd
 # you will lose all connectivity to the node, and the VM launch will probably
5372f433
 # fail.
9b353671
 #
 # If you are running on a single node and don't need to access the VMs from
b9182d65
 # devices other than that node, you can set ``FLAT_INTERFACE=``
 # This will stop nova from bridging any interfaces into ``FLAT_NETWORK_BRIDGE``.
3a19d18e
 FLAT_INTERFACE=${FLAT_INTERFACE-$GUEST_INTERFACE_DEFAULT}
ba23cc73
 
cbe98d56
 ## FIXME(ja): should/can we check that FLAT_INTERFACE is sane?
 
b9182d65
 
 # Database Configuration
428af5a2
 # ----------------------
b9182d65
 
428af5a2
 # To select between database backends, add a line to localrc like:
 #
 #  use_database postgresql
 #
b9182d65
 # The available database backends are defined in the ``DATABASE_BACKENDS``
428af5a2
 # variable defined in stackrc. By default, MySQL is enabled as the database
 # backend.
782b9917
 
428af5a2
 initialize_database_backends && echo "Using $DATABASE_TYPE database backend" || echo "No database enabled"
782b9917
 
b9182d65
 
428af5a2
 # RabbitMQ or Qpid
 # --------------------------
a841644e
 
 # Rabbit connection info
4a221459
 if is_service_enabled rabbit; then
     RABBIT_HOST=${RABBIT_HOST:-localhost}
     read_password RABBIT_PASSWORD "ENTER A PASSWORD TO USE FOR RABBIT."
 fi
ba23cc73
 
a6651e94
 if is_service_enabled swift; then
6ae9ea59
     # If we are using swift3, we can default the s3 port to swift instead
77b0e1d8
     # of nova-objectstore
6ae9ea59
     if is_service_enabled swift3;then
         S3_SERVICE_PORT=${S3_SERVICE_PORT:-8080}
     fi
77b0e1d8
     # We only ask for Swift Hash if we have enabled swift service.
b9182d65
     # ``SWIFT_HASH`` is a random unique string for a swift cluster that
b2857e4d
     # can never change.
     read_password SWIFT_HASH "ENTER A RANDOM SWIFT HASH."
 fi
5f039326
 
77b0e1d8
 # Set default port for nova-objectstore
 S3_SERVICE_PORT=${S3_SERVICE_PORT:-3333}
df0972c1
 
7d28a0e1
 
782b9917
 # Keystone
 # --------
 
4a43b7bd
 # The ``SERVICE_TOKEN`` is used to bootstrap the Keystone database.  It is
 # just a string and is not a 'real' Keystone token.
7a549f40
 read_password SERVICE_TOKEN "ENTER A SERVICE_TOKEN TO USE FOR THE SERVICE ADMIN TOKEN."
b9182d65
 # Services authenticate to Identity with servicename/``SERVICE_PASSWORD``
b3288381
 read_password SERVICE_PASSWORD "ENTER A SERVICE_PASSWORD TO USE FOR THE SERVICE AUTHENTICATION."
ca85b799
 # Horizon currently truncates usernames and passwords at 20 characters
 read_password ADMIN_PASSWORD "ENTER A PASSWORD TO USE FOR HORIZON AND KEYSTONE (20 CHARS OR LESS)."
b96871e4
 
b3288381
 # Set the tenant for service accounts in Keystone
 SERVICE_TENANT_NAME=${SERVICE_TENANT_NAME:-service}
 
6577b468
 
471de7a3
 # Log files
 # ---------
 
7879a3ce
 # Draw a spinner so the user knows something is happening
b9182d65
 function spinner() {
7879a3ce
     local delay=0.75
b9182d65
     local spinstr='/-\|'
7879a3ce
     printf "..." >&3
     while [ true ]; do
         local temp=${spinstr#?}
         printf "[%c]" "$spinstr" >&3
         local spinstr=$temp${spinstr%"$temp"}
         sleep $delay
         printf "\b\b\b" >&3
     done
 }
 
7903b795
 # Echo text to the log file, summary log file and stdout
 # echo_summary "something to say"
 function echo_summary() {
7879a3ce
     if [[ -t 3 && "$VERBOSE" != "True" ]]; then
         kill >/dev/null 2>&1 $LAST_SPINNER_PID
         if [ ! -z "$LAST_SPINNER_PID" ]; then
             printf "\b\b\bdone\n" >&3
         fi
         echo -n $@ >&6
         spinner &
         LAST_SPINNER_PID=$!
     else
         echo $@ >&6
     fi
7903b795
 }
 
 # Echo text only to stdout, no log files
 # echo_nolog "something not for the logs"
 function echo_nolog() {
     echo $@ >&3
 }
 
4a43b7bd
 # Set up logging for ``stack.sh``
 # Set ``LOGFILE`` to turn on logging
 # Append '.xxxxxxxx' to the given name to maintain history
 # where 'xxxxxxxx' is a representation of the date the file was created
33cb4303
 TIMESTAMP_FORMAT=${TIMESTAMP_FORMAT:-"%F-%H%M%S"}
d966ed23
 if [[ -n "$LOGFILE" || -n "$SCREEN_LOGDIR" ]]; then
     LOGDAYS=${LOGDAYS:-7}
     CURRENT_LOG_TIME=$(date "+$TIMESTAMP_FORMAT")
 fi
 
471de7a3
 if [[ -n "$LOGFILE" ]]; then
4a43b7bd
     # First clean up old log files.  Use the user-specified ``LOGFILE``
471de7a3
     # as the template to search for, appending '.*' to match the date
     # we added on earlier runs.
     LOGDIR=$(dirname "$LOGFILE")
     LOGNAME=$(basename "$LOGFILE")
fff6fec4
     mkdir -p $LOGDIR
471de7a3
     find $LOGDIR -maxdepth 1 -name $LOGNAME.\* -mtime +$LOGDAYS -exec rm {} \;
d966ed23
     LOGFILE=$LOGFILE.${CURRENT_LOG_TIME}
7903b795
     SUMFILE=$LOGFILE.${CURRENT_LOG_TIME}.summary
 
     # Redirect output according to config
b9182d65
 
7903b795
     # Copy stdout to fd 3
     exec 3>&1
     if [[ "$VERBOSE" == "True" ]]; then
         # Redirect stdout/stderr to tee to write the log file
e5eee583
         exec 1> >( awk '
                 {
                     cmd ="date +\"%Y-%m-%d %H:%M:%S \""
                     cmd | getline now
                     close("date +\"%Y-%m-%d %H:%M:%S \"")
                     sub(/^/, now)
                     print
                     fflush()
                 }' | tee "${LOGFILE}" ) 2>&1
7903b795
         # Set up a second fd for output
         exec 6> >( tee "${SUMFILE}" )
     else
         # Set fd 1 and 2 to primary logfile
         exec 1> "${LOGFILE}" 2>&1
         # Set fd 6 to summary logfile and stdout
         exec 6> >( tee "${SUMFILE}" /dev/fd/3 )
     fi
 
     echo_summary "stack.sh log $LOGFILE"
471de7a3
     # Specified logfile name always links to the most recent log
     ln -sf $LOGFILE $LOGDIR/$LOGNAME
7903b795
     ln -sf $SUMFILE $LOGDIR/$LOGNAME.summary
 else
     # Set up output redirection without log files
     # Copy stdout to fd 3
     exec 3>&1
efdf3ffc
     if [[ "$VERBOSE" != "True" ]]; then
7903b795
         # Throw away stdout and stderr
         exec 1>/dev/null 2>&1
     fi
     # Always send summary fd to original stdout
     exec 6>&3
471de7a3
 fi
 
d966ed23
 # Set up logging of screen windows
4a43b7bd
 # Set ``SCREEN_LOGDIR`` to turn on logging of screen windows to the
 # directory specified in ``SCREEN_LOGDIR``, we will log to the the file
 # ``screen-$SERVICE_NAME-$TIMESTAMP.log`` in that dir and have a link
 # ``screen-$SERVICE_NAME.log`` to the latest log file.
 # Logs are kept for as long specified in ``LOGDAYS``.
d966ed23
 if [[ -n "$SCREEN_LOGDIR" ]]; then
 
     # We make sure the directory is created.
     if [[ -d "$SCREEN_LOGDIR" ]]; then
         # We cleanup the old logs
         find $SCREEN_LOGDIR -maxdepth 1 -name screen-\*.log -mtime +$LOGDAYS -exec rm {} \;
     else
         mkdir -p $SCREEN_LOGDIR
     fi
 fi
 
4a43b7bd
 
 # Set Up Script Execution
 # -----------------------
 
7879a3ce
 # Kill background processes on exit
 trap clean EXIT
 clean() {
     local r=$?
     kill >/dev/null 2>&1 $(jobs -p)
     exit $r
 }
 
 
4a43b7bd
 # Exit on any errors so that errors don't compound
f9da5081
 trap failed ERR
 failed() {
     local r=$?
7879a3ce
     kill >/dev/null 2>&1 $(jobs -p)
f9da5081
     set +o xtrace
     [ -n "$LOGFILE" ] && echo "${0##*/} failed: full log in $LOGFILE"
     exit $r
 }
 
 # Print the commands being run so that we can see the command that triggers
 # an error.  It is also useful for following along as the install occurs.
 set -o xtrace
 
df0972c1
 
30f68e96
 # Install Packages
d74257d0
 # ================
7d28a0e1
 
4a43b7bd
 # OpenStack uses a fair number of other projects.
30f68e96
 
7d28a0e1
 # Install package requirements
7903b795
 echo_summary "Installing package prerequisites"
b73e247a
 if is_ubuntu; then
     install_package $(get_packages $FILES/apts)
 elif is_fedora; then
     install_package $(get_packages $FILES/rpms)
 elif is_suse; then
     install_package $(get_packages $FILES/rpms-suse)
 else
     exit_distro_not_supported "list of packages"
 fi
 
 if [[ $SYSLOG != "False" ]]; then
     if is_ubuntu || is_fedora; then
         install_package rsyslog-relp
     elif is_suse; then
         install_package rsyslog-module-relp
     else
         exit_distro_not_supported "rsyslog-relp installation"
     fi
 fi
47f02060
 
 if is_service_enabled rabbit; then
     # Install rabbitmq-server
     # the temp file is necessary due to LP: #878600
     tfile=$(mktemp)
     install_package rabbitmq-server > "$tfile" 2>&1
     cat "$tfile"
     rm -f "$tfile"
 elif is_service_enabled qpid; then
00011c08
     if is_fedora; then
20df2a83
         install_package qpid-cpp-server-daemon
00011c08
     elif is_ubuntu; then
47f02060
         install_package qpidd
00011c08
     else
         exit_distro_not_supported "qpid installation"
47f02060
     fi
3bae7c2c
 elif is_service_enabled zeromq; then
00011c08
     if is_fedora; then
         install_package zeromq python-zmq
     elif is_ubuntu; then
3bae7c2c
         install_package libzmq1 python-zmq
00011c08
     elif is_suse; then
         install_package libzmq1 python-pyzmq
     else
         exit_distro_not_supported "zeromq installation"
3bae7c2c
     fi
47f02060
 fi
 
428af5a2
 if is_service_enabled $DATABASE_BACKENDS; then
     install_database
47f02060
 fi
 
 if is_service_enabled q-agt; then
66afb47c
     install_quantum_agent_packages
47f02060
 fi
 
 TRACK_DEPENDS=${TRACK_DEPENDS:-False}
 
 # Install python packages into a virtualenv so that we can track them
 if [[ $TRACK_DEPENDS = True ]] ; then
7903b795
     echo_summary "Installing Python packages into a virtualenv $DEST/.venv"
47f02060
     install_package python-virtualenv
 
     rm -rf $DEST/.venv
     virtualenv --system-site-packages $DEST/.venv
     source $DEST/.venv/bin/activate
     $DEST/.venv/bin/pip freeze > $DEST/requires-pre-pip
 fi
 
4a43b7bd
 
 # Check Out Source
 # ----------------
 
7903b795
 echo_summary "Installing OpenStack project source"
 
b9182d65
 # Grab clients first
d81a0274
 install_keystoneclient
73f6f25b
 install_glanceclient
bf67c19c
 install_novaclient
9f61d29e
 # Check out the client libs that are used most
 git_clone $OPENSTACKCLIENT_REPO $OPENSTACKCLIENT_DIR $OPENSTACKCLIENT_BRANCH
 
38df1228
 # glance, swift middleware and nova api needs keystone middleware
a6651e94
 if is_service_enabled key g-api n-api swift; then
38df1228
     # unified auth system (manages accounts/tokens)
d81a0274
     install_keystone
38df1228
 fi
ece6a332
 
a6651e94
 if is_service_enabled swift; then
ece6a332
     install_swiftclient
     install_swift
6ae9ea59
     if is_service_enabled swift3; then
         # swift3 middleware to provide S3 emulation to Swift
         git_clone $SWIFT3_REPO $SWIFT3_DIR $SWIFT3_BRANCH
     fi
e7ce24fc
 fi
ece6a332
 
a6651e94
 if is_service_enabled g-api n-api; then
e7ce24fc
     # image catalog service
73f6f25b
     install_glance
e7ce24fc
 fi
bf67c19c
 if is_service_enabled nova; then
     # compute service
     install_nova
 fi
a6651e94
 if is_service_enabled n-novnc; then
e7ce24fc
     # a websockets/html5 or flash powered VNC console for vm instances
     git_clone $NOVNC_REPO $NOVNC_DIR $NOVNC_BRANCH
 fi
a6651e94
 if is_service_enabled horizon; then
b562e6a7
     # dashboard
     install_horizon
e7ce24fc
 fi
5440ac0e
 if is_service_enabled quantum; then
66afb47c
     install_quantum
     install_quantumclient
     install_quantum_third_party
1e98bdc5
 fi
bfdad75e
 if is_service_enabled heat; then
     install_heat
32761a49
     install_heatclient
bfdad75e
 fi
67787e6b
 if is_service_enabled cinder; then
     install_cinder
 fi
93361643
 if is_service_enabled ceilometer; then
e583d9b8
     install_ceilometerclient
93361643
     install_ceilometer
 fi
d093121f
 if is_service_enabled tempest; then
     install_tempest
 fi
4a43b7bd
 
b9182d65
 
30f68e96
 # Initialization
d74257d0
 # ==============
30f68e96
 
7903b795
 echo_summary "Configuring OpenStack projects"
 
7d28a0e1
 # Set up our checkouts so they are installed into python path
d74257d0
 # allowing ``import nova`` or ``import glance.client``
d81a0274
 configure_keystoneclient
bf67c19c
 configure_novaclient
9f61d29e
 setup_develop $OPENSTACKCLIENT_DIR
a6651e94
 if is_service_enabled key g-api n-api swift; then
d81a0274
     configure_keystone
e7ce24fc
 fi
a6651e94
 if is_service_enabled swift; then
ece6a332
     configure_swift
     configure_swiftclient
     if is_service_enabled swift3; then
         setup_develop $SWIFT3_DIR
     fi
e7ce24fc
 fi
a6651e94
 if is_service_enabled g-api n-api; then
73f6f25b
     configure_glance
e7ce24fc
 fi
a34961b0
 
 # Do this _after_ glance is installed to override the old binary
4a43b7bd
 # TODO(dtroyer): figure out when this is no longer necessary
73f6f25b
 configure_glanceclient
a34961b0
 
bf67c19c
 if is_service_enabled nova; then
     configure_nova
 fi
a6651e94
 if is_service_enabled horizon; then
b562e6a7
     configure_horizon
1e98bdc5
 fi
0007f3a6
 if is_service_enabled quantum; then
66afb47c
     setup_quantumclient
     setup_quantum
5440ac0e
 fi
bfdad75e
 if is_service_enabled heat; then
     configure_heat
32761a49
     configure_heatclient
bfdad75e
 fi
67787e6b
 if is_service_enabled cinder; then
     configure_cinder
 fi
75a37653
 
47f02060
 if [[ $TRACK_DEPENDS = True ]] ; then
     $DEST/.venv/bin/pip freeze > $DEST/requires-post-pip
     if ! diff -Nru $DEST/requires-pre-pip $DEST/requires-post-pip > $DEST/requires.diff ; then
         cat $DEST/requires.diff
     fi
     echo "Ran stack.sh in depend tracking mode, bailing out now"
     exit 0
 fi
df0972c1
 
c83a7e12
 if is_service_enabled tls-proxy; then
     configure_CA
     init_CA
     # Add name to /etc/hosts
     # don't be naive and add to existing line!
 fi
4a43b7bd
 
ff603ef5
 # Syslog
df0972c1
 # ------
ff603ef5
 
 if [[ $SYSLOG != "False" ]]; then
     if [[ "$SYSLOG_HOST" = "$HOST_IP" ]]; then
         # Configure the master host to receive
         cat <<EOF >/tmp/90-stack-m.conf
 \$ModLoad imrelp
 \$InputRELPServerRun $SYSLOG_PORT
 EOF
         sudo mv /tmp/90-stack-m.conf /etc/rsyslog.d
     else
         # Set rsyslog to send to remote host
         cat <<EOF >/tmp/90-stack-s.conf
 *.*		:omrelp:$SYSLOG_HOST:$SYSLOG_PORT
 EOF
         sudo mv /tmp/90-stack-s.conf /etc/rsyslog.d
     fi
7903b795
     echo_summary "Starting rsyslog"
13dc5ccd
     restart_service rsyslog
ff603ef5
 fi
 
df0972c1
 
e5d92380
 # Finalize queue installation
 # ----------------------------
cbe98d56
 
a6651e94
 if is_service_enabled rabbit; then
47f02060
     # Start rabbitmq-server
7903b795
     echo_summary "Starting RabbitMQ"
00011c08
     if is_fedora || is_suse; then
         # service is not started by default
5218d451
         restart_service rabbitmq-server
     fi
53ed387d
     # change the rabbit password since the default is "guest"
     sudo rabbitmqctl change_password guest $RABBIT_PASSWORD
4a221459
 elif is_service_enabled qpid; then
7903b795
     echo_summary "Starting qpid"
47f02060
     restart_service qpidd
a09ae2ff
 fi
ba23cc73
 
df0972c1
 
428af5a2
 # Configure database
 # ------------------
b9182d65
 
428af5a2
 if is_service_enabled $DATABASE_BACKENDS; then
     configure_database
24859060
 fi
 
b9182d65
 
 # Configure screen
 # ----------------
 
0a7a41eb
 if [ -z "$SCREEN_HARDSTATUS" ]; then
     SCREEN_HARDSTATUS='%{= .} %-Lw%{= .}%> %n%f %t*%{= .}%+Lw%< %-=%{g}(%{d}%H/%l%{g})'
 fi
 
61bb2c1b
 # Clear screen rc file
 SCREENRC=$TOP_DIR/$SCREEN_NAME-screenrc
 if [[ -e $SCREENRC ]]; then
     echo -n > $SCREENRC
 fi
b9182d65
 
7d28a0e1
 # Create a new named screen to run processes in
15733351
 screen -d -m -S $SCREEN_NAME -t shell -s /bin/bash
60df29a2
 sleep 1
b9182d65
 
e5d92380
 # Set a reasonable status bar
15733351
 screen -r $SCREEN_NAME -X hardstatus alwayslastline "$SCREEN_HARDSTATUS"
24859060
 
a9414249
 # Initialize the directory for service status check
 init_service_check
7d28a0e1
 
d81a0274
 # Keystone
 # --------
 
 if is_service_enabled key; then
7903b795
     echo_summary "Starting Keystone"
d81a0274
     init_keystone
     start_keystone
 
d835de89
     # Set up a temporary admin URI for Keystone
c83a7e12
     SERVICE_ENDPOINT=$KEYSTONE_SERVICE_PROTOCOL://$KEYSTONE_AUTH_HOST:$KEYSTONE_AUTH_PORT/v2.0
 
     if is_service_enabled tls-proxy; then
         export OS_CACERT=$INT_CA_DIR/ca-chain.pem
         # Until the client support is fixed, just use the internal endpoint
         SERVICE_ENDPOINT=http://$KEYSTONE_AUTH_HOST:$KEYSTONE_AUTH_PORT_INT/v2.0
     fi
d81a0274
 
d835de89
     # Do the keystone-specific bits from keystone_data.sh
     export OS_SERVICE_TOKEN=$SERVICE_TOKEN
     export OS_SERVICE_ENDPOINT=$SERVICE_ENDPOINT
     create_keystone_accounts
a0dce264
     create_nova_accounts
671c16e6
     create_cinder_accounts
66afb47c
     create_quantum_accounts
d835de89
 
     # ``keystone_data.sh`` creates services, admin and demo users, and roles.
d81a0274
     ADMIN_PASSWORD=$ADMIN_PASSWORD SERVICE_TENANT_NAME=$SERVICE_TENANT_NAME SERVICE_PASSWORD=$SERVICE_PASSWORD \
     SERVICE_TOKEN=$SERVICE_TOKEN SERVICE_ENDPOINT=$SERVICE_ENDPOINT SERVICE_HOST=$SERVICE_HOST \
     S3_SERVICE_PORT=$S3_SERVICE_PORT KEYSTONE_CATALOG_BACKEND=$KEYSTONE_CATALOG_BACKEND \
e2790210
     DEVSTACK_DIR=$TOP_DIR ENABLED_SERVICES=$ENABLED_SERVICES HEAT_API_CFN_PORT=$HEAT_API_CFN_PORT \
bb421bed
     HEAT_API_PORT=$HEAT_API_PORT \
d81a0274
         bash -x $FILES/keystone_data.sh
 
     # Set up auth creds now that keystone is bootstrapped
     export OS_AUTH_URL=$SERVICE_ENDPOINT
     export OS_TENANT_NAME=admin
     export OS_USERNAME=admin
     export OS_PASSWORD=$ADMIN_PASSWORD
d835de89
     unset OS_SERVICE_TOKEN OS_SERVICE_ENDPOINT
d81a0274
 fi
 
 
ca85b799
 # Horizon
df0972c1
 # -------
cbe98d56
 
7d28a0e1
 # Set up the django horizon application to serve via apache/wsgi
75a37653
 
a6651e94
 if is_service_enabled horizon; then
7903b795
     echo_summary "Configuring and starting Horizon"
b562e6a7
     init_horizon
     start_horizon
70dc5e05
 fi
1c1d1505
 
18d350da
 
d74257d0
 # Glance
 # ------
 
a6651e94
 if is_service_enabled g-reg; then
7903b795
     echo_summary "Configuring Glance"
 
73f6f25b
     init_glance
9bab2597
 
ee76d26f
     # Store the images in swift if enabled.
     if is_service_enabled swift; then
         iniset $GLANCE_API_CONF DEFAULT default_store swift
         iniset $GLANCE_API_CONF DEFAULT swift_store_auth_address $KEYSTONE_SERVICE_PROTOCOL://$KEYSTONE_SERVICE_HOST:$KEYSTONE_SERVICE_PORT/v2.0/
         iniset $GLANCE_API_CONF DEFAULT swift_store_user $SERVICE_TENANT_NAME:glance
         iniset $GLANCE_API_CONF DEFAULT swift_store_key $SERVICE_PASSWORD
         iniset $GLANCE_API_CONF DEFAULT swift_store_create_container_on_put True
     fi
70dc5e05
 fi
75a37653
 
7d28a0e1
 
 # Quantum
60df29a2
 # -------
7d28a0e1
 
4dc53aa7
 if is_service_enabled quantum; then
7903b795
     echo_summary "Configuring Quantum"
b9182d65
 
66afb47c
     configure_quantum
     init_quantum
60df29a2
 fi
 
66afb47c
 # Some Quantum plugins require network controllers which are not
 # a part of the OpenStack project. Configure and start them.
396a014b
 if is_service_enabled quantum; then
66afb47c
     configure_quantum_third_party
     init_quantum_third_party
     start_quantum_third_party
396a014b
 fi
 
b9182d65
 
d74257d0
 # Nova
 # ----
bd13b708
 
bf67c19c
 if is_service_enabled nova; then
     echo_summary "Configuring Nova"
     configure_nova
70dc5e05
 fi
 
6f85ab35
 if is_service_enabled n-net q-dhcp; then
55458455
     # Delete traces of nova networks from prior runs
09fde81c
     sudo killall dnsmasq || true
55458455
     clean_iptables
f35cf91a
     rm -rf ${NOVA_STATE_PATH}/networks
     sudo mkdir -p ${NOVA_STATE_PATH}/networks
     sudo chown -R ${USER} ${NOVA_STATE_PATH}/networks
0b31e867
     # Force IP forwarding on, just on case
     sudo sysctl -w net.ipv4.ip_forward=1
70dc5e05
 fi
 
7d28a0e1
 
28fa4e8d
 # Storage Service
7d28a0e1
 # ---------------
 
a6651e94
 if is_service_enabled swift; then
7903b795
     echo_summary "Configuring Swift"
ece6a332
     init_swift
28fa4e8d
 fi
 
df0972c1
 
acff87a2
 # Volume Service
 # --------------
 
67787e6b
 if is_service_enabled cinder; then
7903b795
     echo_summary "Configuring Cinder"
67787e6b
     init_cinder
acff87a2
 fi
 
bf67c19c
 if is_service_enabled nova; then
     echo_summary "Configuring Nova"
da7b8091
     # Rebuild the config file from scratch
     create_nova_conf
bf67c19c
     init_nova
0007f3a6
 
86a79694
     # Additional Nova configuration that is dependent on other services
     if is_service_enabled quantum; then
66afb47c
         create_nova_conf_quantum
86a79694
     elif is_service_enabled n-net; then
66afb47c
         create_nova_conf_nova_network
1bfa3d53
     fi
86a79694
     # All nova-compute workers need to know the vnc configuration options
     # These settings don't hurt anything if n-xvnc and n-novnc are disabled
     if is_service_enabled n-cpu; then
         NOVNCPROXY_URL=${NOVNCPROXY_URL:-"http://$SERVICE_HOST:6080/vnc_auto.html"}
9bc47db2
         iniset $NOVA_CONF DEFAULT novncproxy_base_url "$NOVNCPROXY_URL"
86a79694
         XVPVNCPROXY_URL=${XVPVNCPROXY_URL:-"http://$SERVICE_HOST:6081/console"}
9bc47db2
         iniset $NOVA_CONF DEFAULT xvpvncproxy_base_url "$XVPVNCPROXY_URL"
86a79694
     fi
     if [ "$VIRT_DRIVER" = 'xenserver' ]; then
         VNCSERVER_PROXYCLIENT_ADDRESS=${VNCSERVER_PROXYCLIENT_ADDRESS=169.254.0.1}
     else
         VNCSERVER_PROXYCLIENT_ADDRESS=${VNCSERVER_PROXYCLIENT_ADDRESS=127.0.0.1}
     fi
     # Address on which instance vncservers will listen on compute hosts.
     # For multi-host, this should be the management ip of the compute host.
     VNCSERVER_LISTEN=${VNCSERVER_LISTEN=127.0.0.1}
9bc47db2
     iniset $NOVA_CONF DEFAULT vncserver_listen "$VNCSERVER_LISTEN"
     iniset $NOVA_CONF DEFAULT vncserver_proxyclient_address "$VNCSERVER_PROXYCLIENT_ADDRESS"
     iniset $NOVA_CONF DEFAULT ec2_dmz_host "$EC2_DMZ_HOST"
86a79694
     if is_service_enabled zeromq; then
9bc47db2
         iniset $NOVA_CONF DEFAULT rpc_backend "nova.openstack.common.rpc.impl_zmq"
86a79694
     elif is_service_enabled qpid; then
9bc47db2
         iniset $NOVA_CONF DEFAULT rpc_backend "nova.rpc.impl_qpid"
86a79694
     elif [ -n "$RABBIT_HOST" ] &&  [ -n "$RABBIT_PASSWORD" ]; then
9bc47db2
         iniset $NOVA_CONF DEFAULT rabbit_host "$RABBIT_HOST"
         iniset $NOVA_CONF DEFAULT rabbit_password "$RABBIT_PASSWORD"
86a79694
     fi
9bc47db2
     iniset $NOVA_CONF DEFAULT glance_api_servers "$GLANCE_HOSTPORT"
86a79694
 
 
     # XenServer
     # ---------
 
     if [ "$VIRT_DRIVER" = 'xenserver' ]; then
         echo_summary "Using XenServer virtualization driver"
         read_password XENAPI_PASSWORD "ENTER A PASSWORD TO USE FOR XEN."
9bc47db2
         iniset $NOVA_CONF DEFAULT compute_driver "xenapi.XenAPIDriver"
86a79694
         XENAPI_CONNECTION_URL=${XENAPI_CONNECTION_URL:-"http://169.254.0.1"}
         XENAPI_USER=${XENAPI_USER:-"root"}
9bc47db2
         iniset $NOVA_CONF DEFAULT xenapi_connection_url "$XENAPI_CONNECTION_URL"
         iniset $NOVA_CONF DEFAULT xenapi_connection_username "$XENAPI_USER"
         iniset $NOVA_CONF DEFAULT xenapi_connection_password "$XENAPI_PASSWORD"
         iniset $NOVA_CONF DEFAULT flat_injected "False"
86a79694
         # Need to avoid crash due to new firewall support
         XEN_FIREWALL_DRIVER=${XEN_FIREWALL_DRIVER:-"nova.virt.firewall.IptablesFirewallDriver"}
9bc47db2
         iniset $NOVA_CONF DEFAULT firewall_driver "$XEN_FIREWALL_DRIVER"
f35cf91a
 
     # OpenVZ
     # ------
 
86a79694
     elif [ "$VIRT_DRIVER" = 'openvz' ]; then
         echo_summary "Using OpenVZ virtualization driver"
         # TODO(deva): OpenVZ driver does not yet work if compute_driver is set here.
         #             Replace connection_type when this is fixed.
9bc47db2
         #             iniset $NOVA_CONF DEFAULT compute_driver "openvz.connection.OpenVzConnection"
         iniset $NOVA_CONF DEFAULT connection_type "openvz"
86a79694
         LIBVIRT_FIREWALL_DRIVER=${LIBVIRT_FIREWALL_DRIVER:-"nova.virt.libvirt.firewall.IptablesFirewallDriver"}
9bc47db2
         iniset $NOVA_CONF DEFAULT firewall_driver "$LIBVIRT_FIREWALL_DRIVER"
f35cf91a
 
     # Bare Metal
     # ----------
 
     elif [ "$VIRT_DRIVER" = 'baremetal' ]; then
         echo_summary "Using BareMetal driver"
         LIBVIRT_FIREWALL_DRIVER=${LIBVIRT_FIREWALL_DRIVER:-"nova.virt.firewall.NoopFirewallDriver"}
9bc47db2
         iniset $NOVA_CONF DEFAULT compute_driver nova.virt.baremetal.driver.BareMetalDriver
         iniset $NOVA_CONF DEFAULT firewall_driver $LIBVIRT_FIREWALL_DRIVER
         iniset $NOVA_CONF DEFAULT scheduler_host_manager nova.scheduler.baremetal_host_manager.BaremetalHostManager
         iniset $NOVA_CONF DEFAULT scheduler_default_filters AllHostsFilter
         iniset $NOVA_CONF baremetal driver $BM_DRIVER
         iniset $NOVA_CONF baremetal instance_type_extra_specs cpu_arch:$BM_CPU_ARCH
         iniset $NOVA_CONF baremetal power_manager $BM_POWER_MANAGER
         iniset $NOVA_CONF baremetal tftp_root /tftpboot
f35cf91a
 
1edba331
         # Define extra baremetal nova conf flags by defining the array ``EXTRA_BAREMETAL_OPTS``.
         for I in "${EXTRA_BAREMETAL_OPTS[@]}"; do
            # Attempt to convert flags to options
            iniset $NOVA_CONF baremetal ${I//=/ }
         done
 
f35cf91a
     # Default
     # -------
 
86a79694
     else
         echo_summary "Using libvirt virtualization driver"
9bc47db2
         iniset $NOVA_CONF DEFAULT compute_driver "libvirt.LibvirtDriver"
86a79694
         LIBVIRT_FIREWALL_DRIVER=${LIBVIRT_FIREWALL_DRIVER:-"nova.virt.libvirt.firewall.IptablesFirewallDriver"}
9bc47db2
         iniset $NOVA_CONF DEFAULT firewall_driver "$LIBVIRT_FIREWALL_DRIVER"
cea6c512
     fi
b62b4ca2
 fi
 
f35cf91a
 # Extra things to prepare nova for baremetal, before nova starts
 if is_service_enabled nova && is_baremetal; then
     echo_summary "Preparing for nova baremetal"
     prepare_baremetal_toolchain
     configure_baremetal_nova_dirs
7611c894
     if [[ "$BM_USE_FAKE_ENV" = "True" ]]; then
        create_fake_baremetal_env
     fi
f35cf91a
 fi
df0972c1
 
d74257d0
 # Launch Services
 # ===============
30f68e96
 
dfcd2003
 # Only run the services specified in ``ENABLED_SERVICES``
 
ece6a332
 # Launch Swift Services
 if is_service_enabled swift; then
     echo_summary "Starting Swift"
     start_swift
 fi
 
73f6f25b
 # Launch the Glance services
 if is_service_enabled g-api g-reg; then
7903b795
     echo_summary "Starting Glance"
73f6f25b
     start_glance
d000b22d
 fi
 
d81a0274
 # Create an access key and secret key for nova ec2 register image
 if is_service_enabled key && is_service_enabled swift3 && is_service_enabled nova; then
     NOVA_USER_ID=$(keystone user-list | grep ' nova ' | get_field 1)
     NOVA_TENANT_ID=$(keystone tenant-list | grep " $SERVICE_TENANT_NAME " | get_field 1)
     CREDS=$(keystone ec2-credentials-create --user_id $NOVA_USER_ID --tenant_id $NOVA_TENANT_ID)
     ACCESS_KEY=$(echo "$CREDS" | awk '/ access / { print $4 }')
     SECRET_KEY=$(echo "$CREDS" | awk '/ secret / { print $4 }')
9bc47db2
     iniset $NOVA_CONF DEFAULT s3_access_key "$ACCESS_KEY"
     iniset $NOVA_CONF DEFAULT s3_secret_key "$SECRET_KEY"
     iniset $NOVA_CONF DEFAULT s3_affix_tenant "True"
d000b22d
 fi
 
99fcd818
 screen_it zeromq "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-rpc-zmq-receiver"
3bae7c2c
 
7d28a0e1
 # Launch the nova-api and wait for it to answer before continuing
a6651e94
 if is_service_enabled n-api; then
7903b795
     echo_summary "Starting Nova API"
3a3a2bac
     start_nova_api
d000b22d
 fi
1bfa3d53
 
37dda8d7
 if is_service_enabled q-svc; then
7903b795
     echo_summary "Starting Quantum"
d6767d0d
 
66afb47c
     start_quantum_service_and_check
     create_quantum_initial_network
     setup_quantum_debug
8ec719b4
 elif is_service_enabled $DATABASE_BACKENDS && is_service_enabled n-net; then
37dda8d7
     # Create a small network
fda946e3
     $NOVA_BIN_DIR/nova-manage network create "$PRIVATE_NETWORK_NAME" $FIXED_RANGE 1 $FIXED_NETWORK_SIZE $NETWORK_CREATE_ARGS
37dda8d7
 
     # Create some floating ips
66afb47c
     $NOVA_BIN_DIR/nova-manage floating create $FLOATING_RANGE --pool=$PUBLIC_NETWORK_NAME
37dda8d7
 
     # Create a second pool
9fbeeddc
     $NOVA_BIN_DIR/nova-manage floating create --ip_range=$TEST_FLOATING_RANGE --pool=$TEST_FLOATING_POOL
1bfa3d53
 fi
 
66afb47c
 if is_service_enabled quantum; then
     start_quantum_agents
 fi
bf67c19c
 if is_service_enabled nova; then
     echo_summary "Starting Nova"
     start_nova
 fi
67787e6b
 if is_service_enabled cinder; then
7903b795
     echo_summary "Starting Cinder"
67787e6b
     start_cinder
 fi
93361643
 if is_service_enabled ceilometer; then
c5259b4a
     echo_summary "Configuring Ceilometer"
93361643
     configure_ceilometer
e583d9b8
     configure_ceilometerclient
c5259b4a
     echo_summary "Starting Ceilometer"
8c54849d
     init_ceilometer
93361643
     start_ceilometer
 fi
b562e6a7
 
6ae9ea59
 # Starting the nova-objectstore only if swift3 service is not enabled.
e347b990
 # Swift will act as s3 objectstore.
6ae9ea59
 is_service_enabled swift3 || \
9fbeeddc
     screen_it n-obj "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-objectstore"
df0972c1
 
bad9d89f
 
 # Configure and launch heat engine, api and metadata
bfdad75e
 if is_service_enabled heat; then
bad9d89f
     # Initialize heat, including replacing nova flavors
     echo_summary "Configuring Heat"
     init_heat
7903b795
     echo_summary "Starting Heat"
bfdad75e
     start_heat
 fi
7d28a0e1
 
22ef5731
 # Create account rc files
 # =======================
 
 # Creates source able script files for easier user switching.
 # This step also creates certificates for tenants and users,
 # which is helpful in image bundle steps.
 
 if is_service_enabled nova && is_service_enabled key; then
     $TOP_DIR/tools/create_userrc.sh -PA --target-dir $TOP_DIR/accrc
 fi
 
4a43b7bd
 
d74257d0
 # Install Images
 # ==============
e49b8bd6
 
0ab1d46e
 # Upload an image to glance.
5372f433
 #
4a43b7bd
 # The default image is cirros, a small testing image which lets you login as **root**
ca0e3d02
 # cirros also uses ``cloud-init``, supporting login via keypair and sending scripts as
0ab1d46e
 # userdata.  See https://help.ubuntu.com/community/CloudInit for more on cloud-init
 #
4a43b7bd
 # Override ``IMAGE_URLS`` with a comma-separated list of UEC images.
aab7eae0
 #  * **oneiric**: http://uec-images.ubuntu.com/oneiric/current/oneiric-server-cloudimg-amd64.tar.gz
ca0e3d02
 #  * **precise**: http://uec-images.ubuntu.com/precise/current/precise-server-cloudimg-amd64.tar.gz
08e8b745
 
a6651e94
 if is_service_enabled g-reg; then
bc071bce
     TOKEN=$(keystone token-get | grep ' id ' | get_field 2)
747ee33e
 
f35cf91a
     if is_baremetal; then
        echo_summary "Creating and uploading baremetal images"
b62b4ca2
 
f35cf91a
        # build and upload separate deploy kernel & ramdisk
        upload_baremetal_deploy $TOKEN
 
        # upload images, separating out the kernel & ramdisk for PXE boot
        for image_url in ${IMAGE_URLS//,/ }; do
            upload_baremetal_image $image_url $TOKEN
        done
     else
        echo_summary "Uploading images"
 
        # Option to upload legacy ami-tty, which works with xenserver
        if [[ -n "$UPLOAD_LEGACY_TTY" ]]; then
            IMAGE_URLS="${IMAGE_URLS:+${IMAGE_URLS},}https://github.com/downloads/citrix-openstack/warehouse/tty.tgz"
        fi
 
        for image_url in ${IMAGE_URLS//,/ }; do
            upload_image $image_url $TOKEN
        done
     fi
70dc5e05
 fi
24859060
 
f35cf91a
 # If we are running nova with baremetal driver, there are a few
 # last-mile configuration bits to attend to, which must happen
 # after n-api and n-sch have started.
 # Also, creating the baremetal flavor must happen after images
 # are loaded into glance, though just knowing the IDs is sufficient here
 if is_service_enabled nova && is_baremetal; then
     # create special flavor for baremetal if we know what images to associate
     [[ -n "$BM_DEPLOY_KERNEL_ID" ]] && [[ -n "$BM_DEPLOY_RAMDISK_ID" ]] && \
        create_baremetal_flavor $BM_DEPLOY_KERNEL_ID $BM_DEPLOY_RAMDISK_ID
 
     # otherwise user can manually add it later by calling nova-baremetal-manage
     # otherwise user can manually add it later by calling nova-baremetal-manage
     [[ -n "$BM_FIRST_MAC" ]] && add_baremetal_node
 
     # NOTE: we do this here to ensure that our copy of dnsmasq is running
     sudo pkill dnsmasq || true
     sudo dnsmasq --conf-file= --port=0 --enable-tftp --tftp-root=/tftpboot \
         --dhcp-boot=pxelinux.0 --bind-interfaces --pid-file=/var/run/dnsmasq.pid \
         --interface=$BM_DNSMASQ_IFACE --dhcp-range=$BM_DNSMASQ_RANGE
 
     # ensure callback daemon is running
     sudo pkill nova-baremetal-deploy-helper || true
     screen_it baremetal "nova-baremetal-deploy-helper"
 fi
df0972c1
 
ec086512
 # Configure Tempest last to ensure that the runtime configuration of
 # the various OpenStack services can be queried.
 if is_service_enabled tempest; then
2aa35174
     echo_summary "Configuring Tempest"
ec086512
     configure_tempest
2aa35174
     echo '**************************************************'
     echo_summary "Finished Configuring Tempest"
     echo '**************************************************'
ec086512
 fi
 
33cb4303
 # Save some values we generated for later use
 CURRENT_RUN_TIME=$(date "+$TIMESTAMP_FORMAT")
 echo "# $CURRENT_RUN_TIME" >$TOP_DIR/.stackenv
 for i in BASE_SQL_CONN ENABLED_SERVICES HOST_IP LOGFILE \
   SERVICE_HOST SERVICE_PROTOCOL TLS_IP; do
     echo $i=${!i} >>$TOP_DIR/.stackenv
 done
 
ec086512
 
f5633ddb
 # Run local script
 # ================
 
 # Run ``local.sh`` if it exists to perform user-managed tasks
 if [[ -x $TOP_DIR/local.sh ]]; then
     echo "Running user script $TOP_DIR/local.sh"
     $TOP_DIR/local.sh
 fi
 
a9414249
 # Check the status of running services
 service_check
f5633ddb
 
b94f4bf3
 # Fin
 # ===
 
471de7a3
 set +o xtrace
b94f4bf3
 
7903b795
 if [[ -n "$LOGFILE" ]]; then
     exec 1>&3
     # Force all output to stdout and logs now
baa8b42a
     exec 1> >( tee -a "${LOGFILE}" ) 2>&1
7903b795
 else
     # Force all output to stdout now
     exec 1>&3
 fi
 
df0972c1
 
24859060
 # Using the cloud
4a43b7bd
 # ---------------
24859060
 
e19d8847
 echo ""
 echo ""
 echo ""
 
df0972c1
 # If you installed Horizon on this server you should be able
40a37006
 # to access the site using your browser.
a6651e94
 if is_service_enabled horizon; then
df0972c1
     echo "Horizon is now available at http://$SERVICE_HOST/"
24859060
 fi
 
bad9d89f
 # Warn that the default flavors have been changed by Heat
 if is_service_enabled heat; then
     echo "Heat has replaced the default flavors. View by running: nova flavor-list"
 fi
 
df0972c1
 # If Keystone is present you can point ``nova`` cli to this server
a6651e94
 if is_service_enabled key; then
d835de89
     echo "Keystone is serving at $KEYSTONE_AUTH_PROTOCOL://$SERVICE_HOST:$KEYSTONE_SERVICE_PORT/v2.0/"
df0972c1
     echo "Examples on using novaclient command line is in exercise.sh"
     echo "The default users are: admin and demo"
     echo "The password: $ADMIN_PASSWORD"
24859060
 fi
523c405f
 
4a43b7bd
 # Echo ``HOST_IP`` - useful for ``build_uec.sh``, which uses dhcp to give the instance an address
1097c7ca
 echo "This is your host ip: $HOST_IP"
 
df0972c1
 # Warn that ``EXTRA_FLAGS`` needs to be converted to ``EXTRA_OPTS``
ced65179
 if [[ -n "$EXTRA_FLAGS" ]]; then
7903b795
     echo_summary "WARNING: EXTRA_FLAGS is defined and may need to be converted to EXTRA_OPTS"
ced65179
 fi
 
4a43b7bd
 # Indicate how long this took to run (bash maintained variable ``SECONDS``)
7903b795
 echo_summary "stack.sh completed in $SECONDS seconds."