blob: 806ca401475a363df4ce16cfff02d4e66dc55b47 [file] [log] [blame]
Kaitlin Farr275af402017-02-15 16:01:47 -05001#!/bin/bash
2#
3# This script is executed inside pre_test_hook function in devstack gate.
4
5set -ex
6
7export DEST=${DEST:-$BASE/new}
8export DEVSTACK_DIR=${DEVSTACK_DIRE:-$DEST/devstack}
9export LOCALCONF_PATH=$DEVSTACK_DIR/local.conf
10
11# Here we can set some configurations for local.conf
12# for example, to pass some config options directly to .conf files
13
14echo -e '[[post-config|$NOVA_CONF]]' >> $LOCALCONF_PATH
15echo -e '[glance]' >> $LOCALCONF_PATH
16echo -e 'verify_glance_signatures = True' >> $LOCALCONF_PATH
17