0de0833675
Partially Implements: Blueprint standard-start Change-Id: Ia219015f18d788d0c01c0bffee6b475bb07291a9
11 lines
203 B
Bash
Executable File
11 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
SOURCE="/opt/kolla/nova-network/nova.conf"
|
|
TARGET="/etc/nova/nova.conf"
|
|
OWNER="nova"
|
|
|
|
if [[ -f "$SOURCE" ]]; then
|
|
cp $SOURCE $TARGET
|
|
chown ${OWNER}: $TARGET
|
|
chmod 0644 $TARGET
|
|
fi
|