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