Merge "Make sure tgt is using config.d approach"
This commit is contained in:
commit
eff0c6cf19
@ -189,10 +189,19 @@ function install_cinder() {
|
||||
git_clone $CINDERCLIENT_REPO $CINDERCLIENT_DIR $CINDERCLIENT_BRANCH
|
||||
}
|
||||
|
||||
# apply config.d approach (e.g. Oneiric does not have this)
|
||||
function _configure_tgt_for_config_d() {
|
||||
if [[ ! -d /etc/tgt/conf.d/ ]]; then
|
||||
sudo mkdir /etc/tgt/conf.d
|
||||
echo "include /etc/tgt/conf.d/*.conf" | sudo tee -a /etc/tgt/targets.conf
|
||||
fi
|
||||
}
|
||||
|
||||
# start_cinder() - Start running processes, including screen
|
||||
function start_cinder() {
|
||||
if is_service_enabled c-vol; then
|
||||
if [[ "$os_PACKAGE" = "deb" ]]; then
|
||||
_configure_tgt_for_config_d
|
||||
if [[ ! -f /etc/tgt/conf.d/cinder.conf ]]; then
|
||||
echo "include $CINDER_DIR/volumes/*" | sudo tee /etc/tgt/conf.d/cinder.conf
|
||||
fi
|
||||
|
@ -5,6 +5,7 @@
|
||||
# - functions
|
||||
# - KEYSTONE_AUTH_* must be defined
|
||||
# SERVICE_{TENANT_NAME|PASSWORD} must be defined
|
||||
# _configure_tgt_for_config_d() from lib/cinder
|
||||
|
||||
# stack.sh
|
||||
# ---------
|
||||
@ -94,6 +95,7 @@ function install_nvol() {
|
||||
function start_nvol() {
|
||||
# Setup the tgt configuration file
|
||||
if [[ ! -f /etc/tgt/conf.d/nova.conf ]]; then
|
||||
_configure_tgt_for_config_d
|
||||
sudo mkdir -p /etc/tgt/conf.d
|
||||
echo "include $NOVA_DIR/volumes/*" | sudo tee /etc/tgt/conf.d/nova.conf
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user