759cc41647
Every service except cinder-api was looking for the file '/opt/kolla/cinder/cinder-<service>.conf' when the config file in place was named 'cinder.conf'. Change the rest of the services to look for cinder.conf or the config file will never be copied over to into '/etc/cinder/'. Change-Id: I1cd59f1da09e6f3bc7e7b3a4f45f9da2b8247479 Closes-Bug: #1481928 Closes-Bug: #1484248
11 lines
212 B
Bash
Executable File
11 lines
212 B
Bash
Executable File
#!/bin/bash
|
|
SOURCE="/opt/kolla/cinder-volume/cinder.conf"
|
|
TARGET="/etc/cinder/cinder.conf"
|
|
OWNER="cinder"
|
|
|
|
if [[ -f "$SOURCE" ]]; then
|
|
cp $SOURCE $TARGET
|
|
chown ${OWNER}: $TARGET
|
|
chmod 0644 $TARGET
|
|
fi
|