5e28eb8496
Known bugs/TODOs at this time of this patch update: https://bugs.launchpad.net/kolla/+bug/1477990 https://bugs.launchpad.net/kolla/+bug/1477993 Implements: Blueprint swift-container Closes-bug: #1477992 Co-Authored-By: Paul Bourke <paul.bourke@oracle.com> Change-Id: I031f88a7cd1867104fef12df6ab3ffcc06cb65d6
14 lines
406 B
Bash
14 lines
406 B
Bash
#!/bin/bash
|
|
|
|
if [[ -f /opt/kolla/swift/swift.conf ]]; then
|
|
cp /opt/kolla/swift/swift.conf /etc/swift/
|
|
chown swift: /opt/kolla/swift/swift.conf
|
|
chmod 0640 /etc/swift/swift.conf
|
|
fi
|
|
|
|
if [[ -f /opt/kolla/swift/object-expirer.conf ]]; then
|
|
cp /opt/kolla/swift/object-expirer.conf /etc/swift/
|
|
chown swift: /opt/kolla/swift/object-expirer.conf
|
|
chmod 0640 /etc/swift/object-expirer.conf
|
|
fi
|