5be1e8f3d3
Make devstack grenade code use 'newton' as base branch for migration to master (ocata). After switch [1] to dummy driver we need to override defaults. So, update pre_test_hook approach for saving configuration data properly. [1] I2b698f69a29ef983b13534b2f4d393570be4dac8 Change-Id: Ie5fa0f78b0e3caa06d34a0822a8ed60b69406f9d Closes-Bug: #1631412
18 lines
587 B
Bash
18 lines
587 B
Bash
#!/usr/bin/env bash
|
|
|
|
# ``upgrade-manila``
|
|
|
|
function configure_manila_upgrade {
|
|
XTRACE=$(set +o | grep xtrace)
|
|
set -o xtrace
|
|
|
|
# Copy release-specific files
|
|
sudo cp -f $TARGET_RELEASE_DIR/manila/etc/manila/rootwrap.d/* $MANILA_CONF_DIR/rootwrap.d
|
|
sudo cp $TARGET_RELEASE_DIR/manila/etc/manila/api-paste.ini $MANILA_CONF_DIR/api-paste.ini
|
|
sudo cp $TARGET_RELEASE_DIR/manila/etc/manila/policy.json $MANILA_CONF_DIR/policy.json
|
|
sudo cp $TARGET_RELEASE_DIR/manila/etc/manila/rootwrap.conf $MANILA_CONF_DIR/rootwrap.conf
|
|
|
|
# reset to previous state
|
|
$XTRACE
|
|
}
|