d17bc10c40
Change-Id: Id52a1b24c15ac25044a752e47474dc9ef4096208
28 lines
984 B
Bash
Executable File
28 lines
984 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# 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.
|
|
|
|
# generates sample configuration file heat_integrationtests.conf.sample
|
|
unset OS_USERNAME
|
|
unset OS_PASSWORD
|
|
unset OS_TENANT_NAME
|
|
unset OS_AUTH_URL
|
|
unset OS_REGION_NAME
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
pushd $DIR/..
|
|
PYTHONPATH=. python -m heat_integrationtests.common.config \
|
|
heat_integrationtests/common/config.py \
|
|
> heat_integrationtests/heat_integrationtests.conf.sample
|
|
popd
|