
Change-Id: If00f0f2e3258b7b2876b42b4fbda3681c49c8127 Partially-Implements: blueprint remove-docker-dir
11 lines
206 B
Bash
Executable File
11 lines
206 B
Bash
Executable File
#!/bin/bash
|
|
SOURCE="/opt/kolla/nova-novncproxy/nova.conf"
|
|
TARGET="/etc/nova/nova.conf"
|
|
OWNER="nova"
|
|
|
|
if [[ -f "$SOURCE" ]]; then
|
|
cp $SOURCE $TARGET
|
|
chown ${OWNER}: $TARGET
|
|
chmod 0644 $TARGET
|
|
fi
|