
Change-Id: I273c91d1300c1b30f7263195657e3510975f6f50 Partially-Implements: blueprint remove-config-internal
15 lines
192 B
Bash
Executable File
15 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
|
|
CMD="/usr/bin/ceilometer-collector"
|
|
ARGS=""
|
|
|
|
# Loading common functions.
|
|
source /opt/kolla/kolla-common.sh
|
|
|
|
# Execute config strategy
|
|
set_configs
|
|
|
|
exec $CMD $ARGS
|