1f29afc116
This is an almost complete rewrite of the installation script, mainly directed to allow installation of Rally also from unprivileged users, but also adding a few more options and checks. More in details, the script now: * can run as unprivileged user. * support different database types * allow to specify custom python binary * always asks confirmation before doing potentially dangerous actions (removing directories or installing software) * automatically install needed software if run as root * this script is self-sufficient: it automatically downloads Rally from the git if needed * if interrupted, cleans up the virtualenv and/or the downloaded repository Co-Authored-By: Antonio Messina <antonio.s.messina@gmail.com> Co-Authored-By: Sergey Skripnick <sskripnick@mirantis.com> Change-Id: I574d4fd7cc7c8e71720a6a5ff8db22ee4fd4fc81 Closes-bug: #1393887
33 lines
991 B
Bash
Executable File
33 lines
991 B
Bash
Executable File
#!/bin/sh -e
|
|
#
|
|
# Copyright 2013: Mirantis Inc.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
env
|
|
|
|
sudo ./install_rally.sh --system --yes
|
|
rally deployment list
|
|
|
|
sudo ./install_rally.sh --system --yes
|
|
rally deployment list
|
|
|
|
sudo ./install_rally.sh --yes -d /tmp/rallytest_root/
|
|
/tmp/rallytest_root/bin/rally deployment list
|
|
|
|
sudo rm -fr ~/.rally
|
|
|
|
./install_rally.sh --yes -d /tmp/rallytest_user
|
|
/tmp/rallytest_user/bin/rally deployment list
|