
Change-Id: I07e105a5638ad9fde67e58bf371dffda64563a53 Partially-Implements: blueprint remove-config-internal
15 lines
234 B
Bash
Executable File
15 lines
234 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
|
|
CMD="/usr/bin/swift-object-replicator"
|
|
ARGS="/etc/swift/object-server.conf --verbose"
|
|
|
|
# Loading common functions.
|
|
source /opt/kolla/kolla-common.sh
|
|
|
|
# Execute config strategy
|
|
set_configs
|
|
|
|
exec $CMD $ARGS
|