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