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
34 lines
1.1 KiB
Bash
Executable File
34 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
OWNER="swift"
|
|
|
|
if [[ -f "/opt/kolla/swift/swift.conf" ]]; then
|
|
cp /opt/kolla/swift/swift.conf /etc/swift/swift.conf
|
|
chown ${OWNER}: /etc/swift/swift.conf
|
|
chmod 0640 /etc/swift/swift.conf
|
|
fi
|
|
|
|
if [[ -f "/opt/kolla/swift/object.ring.gz" ]]; then
|
|
cp /opt/kolla/swift/object.ring.gz /etc/swift/object.ring.gz
|
|
chown ${OWNER}: /etc/swift/object.ring.gz
|
|
chmod 0640 /etc/swift/object.ring.gz
|
|
fi
|
|
|
|
if [[ -f "/opt/kolla/swift/container.ring.gz" ]]; then
|
|
cp /opt/kolla/swift/container.ring.gz /etc/swift/container.ring.gz
|
|
chown ${OWNER}: /etc/swift/container.ring.gz
|
|
chmod 0640 /etc/swift/container.ring.gz
|
|
fi
|
|
|
|
if [[ -f "/opt/kolla/swift/account.ring.gz" ]]; then
|
|
cp /opt/kolla/swift/account.ring.gz /etc/swift/account.ring.gz
|
|
chown ${OWNER}: /etc/swift/account.ring.gz
|
|
chmod 0640 /etc/swift/account.ring.gz
|
|
fi
|
|
|
|
if [[ -f "/opt/kolla/swift-proxy-server/proxy-server.conf" ]]; then
|
|
cp /opt/kolla/swift-proxy-server/proxy-server.conf /etc/swift/proxy-server.conf
|
|
chown ${OWNER}: /etc/swift/proxy-server.conf
|
|
chmod 0640 /etc/swift/proxy-server.conf
|
|
fi
|