68e7da0a36
Deploy the core services for murano-api and murano-engine containers. Implements: bp ansible-murano Change-Id: Ibcc618665a3509465ba8f9249a417e8848087eef
11 lines
209 B
Bash
11 lines
209 B
Bash
#!/bin/bash
|
|
SOURCE="/opt/kolla/murano-api/murano.conf"
|
|
TARGET="/etc/murano/murano.conf"
|
|
OWNER="murano"
|
|
|
|
if [[ -f "$SOURCE" ]]; then
|
|
cp $SOURCE $TARGET
|
|
chown ${OWNER}: $TARGET
|
|
chmod 0644 $TARGET
|
|
fi
|