cbd42ca6e9
Updated build.py to reflect this change. Deprecate --template option and make it a noop. Change-Id: I7cd98d1ee684a4c64984a49597159868152683b2 Partially-Implements: blueprint remove-docker-dir
19 lines
497 B
Bash
19 lines
497 B
Bash
#!/bin/bash
|
|
SOURCE="/opt/kolla/swift/swift.conf"
|
|
TARGET="/etc/swift/swift.conf"
|
|
SOURCE_OBJECT_EXPIRER="/opt/kolla/swift/object-expirer.conf"
|
|
TARGET_OBJECT_EXPIRER="/etc/swift/object-expirer.conf"
|
|
OWNER="swift"
|
|
|
|
if [[ -f "$SOURCE" ]]; then
|
|
cp $SOURCE $TARGET
|
|
chown ${OWNER}: $TARGET
|
|
chmod 0640 $TARGET
|
|
fi
|
|
|
|
if [[ -f "$SOURCE_OBJECT_EXPIRER" ]]; then
|
|
cp $SOURCE_OBJECT_EXPIRER $TARGET_OBJECT_EXPIRER
|
|
chown ${OWNER}: $TARGET_OBJECT_EXPIRER
|
|
chmod 0640 $TARGET_OBJECT_EXPIRER
|
|
fi
|